From a7cd88bb67723767a780995cd74e25b0a189e64c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Wed, 21 Apr 2010 23:05:13 +0300 Subject: [PATCH] Invoke "run" with the same bash as runCompletion and runUnit are run with. Makes things a bit easier on systems that don't have bash installed in /bin. --- test/runCompletion | 2 +- test/runUnit | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/runCompletion b/test/runCompletion index 10abc7d1..01af7e6c 100755 --- a/test/runCompletion +++ b/test/runCompletion @@ -4,4 +4,4 @@ # isn't initialized at that point (i.e. output of `expect' is shown on # stdout - `open_logs' hasn't run yet?). And running code from a library # file isn't probably a good idea either. -"${BASH_SOURCE[0]%/*}/run" --tool completion $* +"$BASH" "${BASH_SOURCE[0]%/*}/run" --tool completion $* diff --git a/test/runUnit b/test/runUnit index d22a20d4..597342dc 100755 --- a/test/runUnit +++ b/test/runUnit @@ -4,4 +4,4 @@ # isn't initialized at that point (i.e. output of `expect' is shown on # stdout - `open_logs' hasn't run yet?). And running code from a library # file isn't probably a good idea either. -"${BASH_SOURCE[0]%/*}/run" --tool unit $* +"$BASH" "${BASH_SOURCE[0]%/*}/run" --tool unit $*