From bdb2e73bb1c5a9e7488ba6385580f267fbb030e0 Mon Sep 17 00:00:00 2001 From: Gurucharan Shetty Date: Mon, 16 Jun 2014 13:49:18 -0700 Subject: [PATCH] ovsdb-server.at: Skip tests that use ovsdb-server's "--run" on Windows. ovsdb-server's port on Windows does not support the "--run" option. The two tests skipped in this commit make use of "--run" option to test ovsdb-server's truncating of corrupt log or bad transaction. It looks a little tricky to get this test running on Windows without the "--run" option implemented. Signed-off-by: Gurucharan Shetty Acked-by: Ben Pfaff --- tests/ovsdb-server.at | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/ovsdb-server.at b/tests/ovsdb-server.at index b30a71472..36073d204 100644 --- a/tests/ovsdb-server.at +++ b/tests/ovsdb-server.at @@ -42,6 +42,7 @@ AT_BANNER([ovsdb-server miscellaneous features]) AT_SETUP([truncating corrupted database log]) AT_KEYWORDS([ovsdb server positive unix]) +AT_SKIP_IF([test "$IS_WIN32" = "yes"]) OVS_RUNDIR=`pwd`; export OVS_RUNDIR ordinal_schema > schema AT_CHECK([ovsdb-tool create db schema], [0], [stdout], [ignore]) @@ -89,6 +90,7 @@ AT_CLEANUP AT_SETUP([truncating database log with bad transaction]) AT_KEYWORDS([ovsdb server positive unix]) +AT_SKIP_IF([test "$IS_WIN32" = "yes"]) OVS_RUNDIR=`pwd`; export OVS_RUNDIR ordinal_schema > schema AT_CHECK([ovsdb-tool create db schema], [0], [stdout], [ignore]) -- 2.20.1