From 823a70f6390a1c504cd96c1837f882f275a28633 Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Sun, 3 Mar 2013 22:12:58 +0100 Subject: [PATCH] test: Fix unportable shell script construct --- test.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test.sh b/test.sh index 08eb08ab4..716721958 100755 --- a/test.sh +++ b/test.sh @@ -46,7 +46,8 @@ unset CCACHE_UNIFY # Many tests backdate files, which updates their ctimes. In those tests, we # must ignore ctimes. Might as well do so everywhere. default_sloppiness=include_file_ctime -export CCACHE_SLOPPINESS="$default_sloppiness" +CCACHE_SLOPPINESS="$default_sloppiness" +export CCACHE_SLOPPINESS test_failed() { echo "SUITE: \"$testsuite\", TEST: \"$testname\" - $1" -- 2.47.2