summaryrefslogtreecommitdiff
path: root/test/test7.sh
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-06-15 13:30:12 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-06-15 13:31:20 +0000
commit83d859286db8a184054a5e05f707953634c82604 (patch)
treed7224227db27abba7a9d21e1c2f074c0d7541f9a /test/test7.sh
parentec6359732dec5651567f593d07871b5b7997c91d (diff)
downloadapk-tools-83d859286db8a184054a5e05f707953634c82604.tar.gz
apk-tools-83d859286db8a184054a5e05f707953634c82604.tar.bz2
apk-tools-83d859286db8a184054a5e05f707953634c82604.tar.xz
apk-tools-83d859286db8a184054a5e05f707953634c82604.zip
test: initial testsuite
Diffstat (limited to 'test/test7.sh')
-rwxr-xr-xtest/test7.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/test7.sh b/test/test7.sh
new file mode 100755
index 0000000..a742fbc
--- /dev/null
+++ b/test/test7.sh
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+# desc: test triggers in busybox package
+
+# we had a bug that caused apk fix --reinstall to segfault every second time
+
+$APK add --root $ROOT --initdb -U --repository $PWD/repo1 \
+ --repository $SYSREPO busybox
+
+for i in 0 1 2 3; do
+ # delete wget symlink
+ rm -f "$ROOT"/usr/bin/wget
+
+ # re-install so we run the trigger again
+ $APK fix --root $ROOT --repository $SYSREPO --reinstall busybox
+
+ # verify wget symlink is there
+ test -L "$ROOT"/usr/bin/wget
+done
+
+