m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2014-04-24 11:26:39 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2014-04-24 11:26:39 +0200
commitbdc3bacff7e149933275fa4ecbc5644773ca12c5 (patch)
tree887c1c0795e5e98bc41a92770879fa3023c9bf4e /tests
parentf7764184104315b620ddb39be691145863e089ab (diff)
Allow overridable bash.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/aggregate-results.sh2
-rwxr-xr-xtests/fake-editor-change-password.sh2
-rw-r--r--tests/sharness.sh2
-rwxr-xr-xtests/t0001-sanity-checks.sh2
-rwxr-xr-xtests/t0010-generate-tests.sh2
-rwxr-xr-xtests/t0020-show-tests.sh2
-rwxr-xr-xtests/t0050-mv-tests.sh2
-rwxr-xr-xtests/t0060-rm-tests.sh2
-rwxr-xr-xtests/t0100-insert-tests.sh2
-rwxr-xr-xtests/t0200-edit-tests.sh2
-rwxr-xr-xtests/t0300-reencryption.sh2
-rwxr-xr-xtests/t0400-grep.sh2
-rwxr-xr-xtests/t0500-find.sh2
13 files changed, 13 insertions, 13 deletions
diff --git a/tests/aggregate-results.sh b/tests/aggregate-results.sh
index 8552e26..154da67 100755
--- a/tests/aggregate-results.sh
+++ b/tests/aggregate-results.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
#
# Copyright (c) 2008-2012 Git project
#
diff --git a/tests/fake-editor-change-password.sh b/tests/fake-editor-change-password.sh
index af74572..7d30bdb 100755
--- a/tests/fake-editor-change-password.sh
+++ b/tests/fake-editor-change-password.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
# Fake editor program for testing 'pass edit'.
# Changes password to 'Hello World', leaving rest of file intact.
#
diff --git a/tests/sharness.sh b/tests/sharness.sh
index b7ecc56..22049a5 100644
--- a/tests/sharness.sh
+++ b/tests/sharness.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env 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 4ce8d09..92cb785 100755
--- a/tests/t0001-sanity-checks.sh
+++ b/tests/t0001-sanity-checks.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
test_description='Sanity checks'
cd "$(dirname "$0")"
diff --git a/tests/t0010-generate-tests.sh b/tests/t0010-generate-tests.sh
index 72bdb47..da5e41f 100755
--- a/tests/t0010-generate-tests.sh
+++ b/tests/t0010-generate-tests.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
test_description='Test generate'
cd "$(dirname "$0")"
diff --git a/tests/t0020-show-tests.sh b/tests/t0020-show-tests.sh
index 602e93e..e55e574 100755
--- a/tests/t0020-show-tests.sh
+++ b/tests/t0020-show-tests.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
test_description='Test show'
cd "$(dirname "$0")"
diff --git a/tests/t0050-mv-tests.sh b/tests/t0050-mv-tests.sh
index 7a45249..6561286 100755
--- a/tests/t0050-mv-tests.sh
+++ b/tests/t0050-mv-tests.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
test_description='Test mv command'
cd "$(dirname "$0")"
diff --git a/tests/t0060-rm-tests.sh b/tests/t0060-rm-tests.sh
index 3a15077..fc38b3d 100755
--- a/tests/t0060-rm-tests.sh
+++ b/tests/t0060-rm-tests.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
test_description='Test rm'
cd "$(dirname "$0")"
diff --git a/tests/t0100-insert-tests.sh b/tests/t0100-insert-tests.sh
index 451ef52..d8101ab 100755
--- a/tests/t0100-insert-tests.sh
+++ b/tests/t0100-insert-tests.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
test_description='Test insert'
cd "$(dirname "$0")"
diff --git a/tests/t0200-edit-tests.sh b/tests/t0200-edit-tests.sh
index 8055c91..1dc125a 100755
--- a/tests/t0200-edit-tests.sh
+++ b/tests/t0200-edit-tests.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
test_description='Test edit'
cd "$(dirname "$0")"
diff --git a/tests/t0300-reencryption.sh b/tests/t0300-reencryption.sh
index 6a453d5..b595511 100755
--- a/tests/t0300-reencryption.sh
+++ b/tests/t0300-reencryption.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
test_description='Reencryption consistency'
cd "$(dirname "$0")"
diff --git a/tests/t0400-grep.sh b/tests/t0400-grep.sh
index f858c10..206377f 100755
--- a/tests/t0400-grep.sh
+++ b/tests/t0400-grep.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
test_description='Grep check'
cd "$(dirname "$0")"
diff --git a/tests/t0500-find.sh b/tests/t0500-find.sh
index 5c2cc5b..3cf6815 100755
--- a/tests/t0500-find.sh
+++ b/tests/t0500-find.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
test_description='Find check'
cd "$(dirname "$0")"