summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmit Shah <amit.shah@redhat.com>2010-01-27 15:01:53 +0530
committerAmit Shah <amit.shah@redhat.com>2010-01-27 15:02:02 +0530
commit73c03c1c4bb1bde7e94e16b08b095852c06c6cbd (patch)
tree3254a934e4c1e1baf8e5719fae52b3538608595b
parentd25bc9ba62fd9767ac784f6f38d6dc72b2fcab14 (diff)
downloadtest-virtserial-73c03c1c4bb1bde7e94e16b08b095852c06c6cbd.tar.gz
test-virtserial-73c03c1c4bb1bde7e94e16b08b095852c06c6cbd.tar.xz
test-virtserial-73c03c1c4bb1bde7e94e16b08b095852c06c6cbd.zip
auto-test: switch off host throttling, guest/host caching tests
For all the cases that aren't included in the upstream code yet, switch off the tests so that we don't see failures for features not yet implemented. Signed-off-by: Amit Shah <amit.shah@redhat.com>
-rw-r--r--auto-virtserial.c16
1 files changed, 15 insertions, 1 deletions
diff --git a/auto-virtserial.c b/auto-virtserial.c
index d9e5714..bb03ae5 100644
--- a/auto-virtserial.c
+++ b/auto-virtserial.c
@@ -1194,20 +1194,34 @@ static int start_tests(void)
run_test(TEST_G_THROTTLE, 2);
/* Throttling is enabled on this port */
run_test(TEST_G_THROTTLE, 4);
-#endif
+ /*
+ * Host throttling is also not included in the upstream
+ * code. If this code is pushed upstream, these tests will be
+ * re-added.
+ */
/* Throttling is not enabled on this port */
run_test(TEST_H_THROTTLE, 2);
/* Throttling is enabled on this port */
run_test(TEST_H_THROTTLE, 4);
+ /*
+ * Guest caching is not included in the upstream code as of
+ * now
+ */
/* Caching is enabled on this port */
run_test(TEST_G_CACHING, 2);
+#endif
/* Caching is not enabled on this port */
run_test(TEST_G_CACHING, 3);
+#if 0
+ /*
+ * Host caching is not included in the upstream code as of now
+ */
/* Caching is enabled on this port */
run_test(TEST_H_CACHING, 2);
+#endif
/* Caching is not enabled on this port */
run_test(TEST_H_CACHING, 3);