summaryrefslogtreecommitdiffstats
path: root/test/test.d/db-update.sh
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2014-10-07 12:42:01 +0200
committerFlorian Pritz <bluewind@xinu.at>2015-05-27 15:46:05 +0200
commit1a57633f1d8e15f4b0ca48f2acacf6b67f74b573 (patch)
tree0c1f6ba175f7ee4bdcb52d9bd7b9473e456d105a /test/test.d/db-update.sh
parent81023f6318b0257fd266585b34817dee46c37e35 (diff)
downloaddbscripts-1a57633f1d8e15f4b0ca48f2acacf6b67f74b573.tar.gz
dbscripts-1a57633f1d8e15f4b0ca48f2acacf6b67f74b573.tar.xz
INCOMPLETE: make tests.d/db-update.sh work
This depends on my setup so it can call an adjusted archrelease. Needs to be fixed properly. Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'test/test.d/db-update.sh')
-rwxr-xr-xtest/test.d/db-update.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/test.d/db-update.sh b/test/test.d/db-update.sh
index fa07077..5cee647 100755
--- a/test/test.d/db-update.sh
+++ b/test/test.d/db-update.sh
@@ -153,12 +153,11 @@ testAddIncompleteSplitPackage() {
# remove a split package to make db-update fail
rm "${STAGING}"/extra/${pkgbase}1-*
- ../db-update >/dev/null 2>&1 && fail "db-update should fail when a split package is missing!"
+ # TODO: should this really not add any packages but exit 0? check against new specs
+ ../db-update
for arch in ${arches[@]}; do
- ( [ -r "${FTP_BASE}/${repo}/os/${arch}/${repo}${DBEXT%.tar.*}" ] \
- && bsdtar -xf "${FTP_BASE}/${repo}/os/${arch}/${repo}${DBEXT%.tar.*}" -O | grep -q ${pkgbase}) \
- && fail "${pkgbase} should not be in ${repo}/os/${arch}/${repo}${DBEXT%.tar.*}"
+ checkRemovedPackage extra ${pkgbase} $arch
done
}