diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2014-04-23 01:17:04 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2014-04-23 01:17:04 +0200 |
commit | 8a88bc0317c7e449b65b067352f0d783171fb359 (patch) | |
tree | 1e08dc148e60d229731d7dcc1317366f049a25bc /tests | |
parent | 4eb459b0af57045d74dde60d759310cc652b3d51 (diff) | |
download | pass-8a88bc0317c7e449b65b067352f0d783171fb359.tar.gz pass-8a88bc0317c7e449b65b067352f0d783171fb359.tar.bz2 pass-8a88bc0317c7e449b65b067352f0d783171fb359.zip |
tests: make bash usage explicit
Diffstat (limited to '')
-rwxr-xr-x | tests/aggregate-results.sh | 2 | ||||
-rwxr-xr-x | tests/fake-editor-change-password.sh | 2 | ||||
-rw-r--r-- | tests/gnupg/random_seed | bin | 600 -> 600 bytes | |||
-rwxr-xr-x | tests/setup.sh | 4 | ||||
-rw-r--r-- | tests/sharness.sh | 2 | ||||
-rwxr-xr-x | tests/t0001-sanity-checks.sh | 2 | ||||
-rwxr-xr-x | tests/t0005-init-failing.sh | 2 | ||||
-rwxr-xr-x | tests/t0010-generate-tests.sh | 2 | ||||
-rwxr-xr-x | tests/t0020-show-tests.sh | 2 | ||||
-rwxr-xr-x | tests/t0050-mv-tests.sh | 2 | ||||
-rwxr-xr-x | tests/t0060-rm-tests.sh | 2 | ||||
-rwxr-xr-x | tests/t0100-insert-tests.sh | 2 | ||||
-rwxr-xr-x | tests/t0200-edit-tests.sh | 2 |
13 files changed, 12 insertions, 14 deletions
diff --git a/tests/aggregate-results.sh b/tests/aggregate-results.sh index 958cbea..8552e26 100755 --- a/tests/aggregate-results.sh +++ b/tests/aggregate-results.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # Copyright (c) 2008-2012 Git project # diff --git a/tests/fake-editor-change-password.sh b/tests/fake-editor-change-password.sh index bfae8e1..af74572 100755 --- a/tests/fake-editor-change-password.sh +++ b/tests/fake-editor-change-password.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Fake editor program for testing 'pass edit'. # Changes password to 'Hello World', leaving rest of file intact. # diff --git a/tests/gnupg/random_seed b/tests/gnupg/random_seed Binary files differindex 8e02108..d89be71 100644 --- a/tests/gnupg/random_seed +++ b/tests/gnupg/random_seed diff --git a/tests/setup.sh b/tests/setup.sh index 88f8aa5..3b9e089 100755 --- a/tests/setup.sh +++ b/tests/setup.sh @@ -16,9 +16,7 @@ PASSWORD_STORE_TEST_HOME="$(cd "$(dirname "$BASH_SOURCE")"; pwd)" PASS="${PASSWORD_STORE_TEST_HOME}/../src/password-store.sh" -if test -e ${PASS} ; then - echo "pass is ${PASS}" -else +if ! test -e ${PASS} ; then echo "Could not find password-store.sh" exit 1 fi diff --git a/tests/sharness.sh b/tests/sharness.sh index 7395be4..380f22c 100644 --- a/tests/sharness.sh +++ b/tests/sharness.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # Copyright (c) 2011-2012 Mathias Lafeldt # Copyright (c) 2005-2012 Git project diff --git a/tests/t0001-sanity-checks.sh b/tests/t0001-sanity-checks.sh index bf04394..f20664e 100755 --- a/tests/t0001-sanity-checks.sh +++ b/tests/t0001-sanity-checks.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash test_description='Sanity checks' . ./setup.sh diff --git a/tests/t0005-init-failing.sh b/tests/t0005-init-failing.sh index 01548a6..e5864ff 100755 --- a/tests/t0005-init-failing.sh +++ b/tests/t0005-init-failing.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash test_description='Show "pass init" returning non-zero bug(?) (XXX: remove this test?)' . ./setup.sh diff --git a/tests/t0010-generate-tests.sh b/tests/t0010-generate-tests.sh index 96bb820..28be31d 100755 --- a/tests/t0010-generate-tests.sh +++ b/tests/t0010-generate-tests.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash test_description='Test generate' . ./setup.sh diff --git a/tests/t0020-show-tests.sh b/tests/t0020-show-tests.sh index 8e0a69a..5f582aa 100755 --- a/tests/t0020-show-tests.sh +++ b/tests/t0020-show-tests.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash test_description='Test show' . ./setup.sh diff --git a/tests/t0050-mv-tests.sh b/tests/t0050-mv-tests.sh index 65d2c7e..399868a 100755 --- a/tests/t0050-mv-tests.sh +++ b/tests/t0050-mv-tests.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash test_description='Test mv' . ./setup.sh diff --git a/tests/t0060-rm-tests.sh b/tests/t0060-rm-tests.sh index 5159ac7..7c5ad6a 100755 --- a/tests/t0060-rm-tests.sh +++ b/tests/t0060-rm-tests.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash test_description='Test rm' . ./setup.sh diff --git a/tests/t0100-insert-tests.sh b/tests/t0100-insert-tests.sh index f1349c4..acb892d 100755 --- a/tests/t0100-insert-tests.sh +++ b/tests/t0100-insert-tests.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash test_description='Test insert' . ./setup.sh diff --git a/tests/t0200-edit-tests.sh b/tests/t0200-edit-tests.sh index 65c67f1..27b1794 100755 --- a/tests/t0200-edit-tests.sh +++ b/tests/t0200-edit-tests.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash test_description='Test edit' . ./setup.sh |