summaryrefslogtreecommitdiffstats
path: root/tests/fail-installing-to-root
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fail-installing-to-root')
-rw-r--r--tests/fail-installing-to-root9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/fail-installing-to-root b/tests/fail-installing-to-root
new file mode 100644
index 0000000..ded6b5d
--- /dev/null
+++ b/tests/fail-installing-to-root
@@ -0,0 +1,9 @@
+#!/bin/sh
+set -eu
+export LC_ALL=C.UTF-8
+ret=0
+{{ CMD }} --mode={{ MODE }} --variant=apt {{ DIST }} / {{ MIRROR }} || ret=$?
+if [ "$ret" = 0 ]; then
+ echo expected failure but got exit $ret >&2
+ exit 1
+fi