From e1d3b40b7e7addc8adc065c99d7affa7611e2428 Mon Sep 17 00:00:00 2001 From: Steffen Prohaska Date: Sun, 13 Apr 2008 12:18:32 +0200 Subject: [PATCH] test-lib: Set is_mingw on MinGW We need to skip some tests on MinGW because they test features that are not available on Windows. This commit adds a shell variable is_mingw. You can test is_mingw to skip a test only on MinGW. Signed-off-by: Steffen Prohaska --- t/test-lib.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/t/test-lib.sh b/t/test-lib.sh index 30a181d548..11ef041335 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -438,5 +438,6 @@ case $(uname -s) in find () { /usr/bin/find "$@" } + is_mingw=t ;; esac -- 2.11.4.GIT