From: Joel Rosdahl Date: Sun, 8 Aug 2010 17:47:25 +0000 (+0200) Subject: test: List all suites in all_suites and exclude unsupported suites on win32 X-Git-Tag: v3.1~92 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=20f4b8f908933a19f0202caba424f69892b4ade4;p=thirdparty%2Fccache.git test: List all suites in all_suites and exclude unsupported suites on win32 --- 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