summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGurucharan Shetty <gshetty@nicira.com>2014-06-12 12:27:11 -0700
committerGurucharan Shetty <gshetty@nicira.com>2014-06-24 09:53:59 -0700
commit0f1e8ed05d8f9c4658c0a11c3538eae5c804cf97 (patch)
tree4e95bc05b8d3aaa086a2e2d47bb48dee77a782d4
parent7acb0553ce4d14a235e82635a5c5f1345dd3c7bf (diff)
downloadopenvswitch-0f1e8ed05d8f9c4658c0a11c3538eae5c804cf97.tar.gz
atlocal: Disable Python related tests on Windows.
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>
-rw-r--r--tests/atlocal.in7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/atlocal.in b/tests/atlocal.in
index 60f3dbf35..2f816fc12 100644
--- a/tests/atlocal.in
+++ b/tests/atlocal.in
@@ -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