aboutsummaryrefslogtreecommitdiffstats
path: root/test/test4.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/test4.sh')
-rwxr-xr-xtest/test4.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/test4.sh b/test/test4.sh
new file mode 100755
index 0000000000..8132c607b5
--- /dev/null
+++ b/test/test4.sh
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+# desc: test failing pre-install
+
+# pre-install script will fail if should-fail file exists
+mkdir -p "$ROOT"
+touch "$ROOT"/should-fail
+
+! $APK add --root $ROOT --initdb --repository $PWD/repo1 --repository $SYSREPO \
+ -U test-c
+
+# check that pre-install was executed
+test -f $ROOT/pre-install
+
+# check that package was not installed
+! $APK info --root $ROOT -e test-c
+