tests: Define a variable "IS_WIN32" for tests.
authorGurucharan Shetty <gshetty@nicira.com>
Thu, 3 Apr 2014 22:52:45 +0000 (15:52 -0700)
committerGurucharan Shetty <gshetty@nicira.com>
Tue, 22 Apr 2014 22:14:25 +0000 (15:14 -0700)
Signed-off-by: Gurucharan Shetty <gshetty@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
tests/atlocal.in

index 06e7384..60f3dbf 100644 (file)
@@ -78,3 +78,13 @@ FreeBSD|NetBSD)
     LOOPBACK_INTERFACE=lo0
     ;;
 esac
+
+# Check for MINGW platform.
+case `uname` in
+MINGW*)
+    IS_WIN32="yes"
+    ;;
+*)
+    IS_WIN32="no"
+    ;;
+esac