From 20f4b8f908933a19f0202caba424f69892b4ade4 Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Sun, 8 Aug 2010 19:47:25 +0200 Subject: [PATCH] test: List all suites in all_suites and exclude unsupported suites on win32 --- test.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test.sh b/test.sh index 62d35db46..150cfcb1e 100755 --- a/test.sh +++ b/test.sh @@ -1554,10 +1554,12 @@ export CCACHE_NODIRECT all_suites=" base +link !win32 hardlink cpp2 nlevels4 nlevels1 +basedir !win32 direct compression readonly @@ -1572,11 +1574,12 @@ case $host_os in CCACHE_DETECT_SHEBANG=1 DEVNULL=NUL PATH_DELIM=";" + all_suites="`echo "$all_suites" | grep -v '!win32'`" ;; *) DEVNULL=/dev/null PATH_DELIM=":" - all_suites="$all_suites link basedir" + all_suites="`echo "$all_suites" | cut -d' ' -f1`" ;; esac -- 2.47.3