summaryrefslogtreecommitdiffstats
path: root/tests/fail-with-path-with-quotes
blob: 5483ff109da9afe4630439919501f53be66c4079 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -eu
export LC_ALL=C.UTF-8

trap 'rm -rf /tmp/quoted\"path' EXIT INT TERM

ret=0
{{ CMD }} --mode={{ MODE }} --variant=apt {{ DIST }} /tmp/quoted\"path {{ MIRROR }} || ret=$?
if [ "$ret" = 0 ]; then
	echo expected failure but got exit $ret >&2
	exit 1
fi