summaryrefslogtreecommitdiff
path: root/tests/make-test-app.sh
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2018-10-09 21:12:05 -0400
committerAlexander Larsson <alexander.larsson@gmail.com>2018-10-10 12:21:15 +0200
commitc8db26cc35876fe5e526c6cbb48ceff0f1e4d4d4 (patch)
tree7bf1c9c33e530fade89a055911bb9a4f1b645b6e /tests/make-test-app.sh
parentd4df921940b3ea727170a89eeefa994824076932 (diff)
downloadflatpak-c8db26cc35876fe5e526c6cbb48ceff0f1e4d4d4.tar.gz
Make the test app not hang
We want an app that keeps running for some of the library tests, but other tests expect it to return right away. Make this opt-in.
Diffstat (limited to 'tests/make-test-app.sh')
-rwxr-xr-xtests/make-test-app.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/make-test-app.sh b/tests/make-test-app.sh
index 7ba186cf..a25554cc 100755
--- a/tests/make-test-app.sh
+++ b/tests/make-test-app.sh
@@ -36,7 +36,7 @@ mkdir -p ${DIR}/files/bin
cat > ${DIR}/files/bin/hello.sh <<EOF
#!/bin/sh
echo "Hello world, from a sandbox$EXTRA"
-if [ "$EXTRA" = "UPDATED" ]; then
+if [ "$EXTRA" = "SPIN" ]; then
exec sh
fi
EOF