atlocal: Disable Python related tests on Windows.
authorGurucharan Shetty <gshetty@nicira.com>
Thu, 12 Jun 2014 19:27:11 +0000 (12:27 -0700)
committerGurucharan Shetty <gshetty@nicira.com>
Tue, 24 Jun 2014 16:53:59 +0000 (09:53 -0700)
Most of the Python code in Open vSwitch repo does not work
on Windows. Till that porting is done, simply skip all
Python tests.

Signed-off-by: Gurucharan Shetty <gshetty@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
tests/atlocal.in

index 60f3dbf..2f816fc 100644 (file)
@@ -88,3 +88,10 @@ MINGW*)
     IS_WIN32="no"
     ;;
 esac
+
+# XXX: Disable Python related tests on Windows because Open vSwitch code
+# written in Python has not been ported to the Windows platform. We will
+# need to remove the next block after porting is complete.
+if test "$IS_WIN32" = "yes"; then
+    HAVE_PYTHON="no"
+fi