diff options
author | Chris Evich <cevich@redhat.com> | 2019-10-02 14:29:56 -0400 |
---|---|---|
committer | Chris Evich <cevich@redhat.com> | 2019-10-02 14:32:31 -0400 |
commit | c091374d775a927d8726a26e3f9a088213a89bb4 (patch) | |
tree | e3043e59f29f55a2281c0953097200291a43625f /test | |
parent | 0046b0195e9c429cce2926977f0ed5da0dea7be5 (diff) | |
download | podman-c091374d775a927d8726a26e3f9a088213a89bb4.tar.gz podman-c091374d775a927d8726a26e3f9a088213a89bb4.tar.bz2 podman-c091374d775a927d8726a26e3f9a088213a89bb4.zip |
System-tests: Use bash explicitly
On Ubuntu, /bin/sh != /bin/bash. Update system-tests to only use
bash for testing consistency across platforms.
Signed-off-by: Chris Evich <cevich@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/system/400-unprivileged-access.bats | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/system/400-unprivileged-access.bats b/test/system/400-unprivileged-access.bats index 738d8d87b..56c40e9c8 100644 --- a/test/system/400-unprivileged-access.bats +++ b/test/system/400-unprivileged-access.bats @@ -22,7 +22,7 @@ load helpers # as a user, the parent directory must be world-readable. test_script=$PODMAN_TMPDIR/fail-if-writable cat >$test_script <<"EOF" -#!/bin/sh +#!/bin/bash path="$1" |