X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fovsdb.at;h=1ee9c03785b3d37c3ba722bc10c9daf107e6a993;hb=2da0385d1f57fe00977d2e58022b3f9a6604192e;hp=6e3f63d852d4880eb57a9953d97e45494b4bcac2;hpb=c3bb4bd7f1d9c045a5e5d7062b09d4dac4e48195;p=openvswitch diff --git a/tests/ovsdb.at b/tests/ovsdb.at index 6e3f63d8..1ee9c037 100644 --- a/tests/ovsdb.at +++ b/tests/ovsdb.at @@ -3,15 +3,11 @@ # Runs "test-ovsdb TEST-OVSDB-ARGS" and checks that it exits with # status 0 and prints OUTPUT on stdout. # -# TITLE is provided to AT_SETUP and KEYWORDS to AT_KEYWORDS. If -# PREREQ is specified then the test is skipped if the Autoconf version -# is less than PREREQ. +# TITLE is provided to AT_SETUP and KEYWORDS to AT_KEYWORDS. m4_define([OVSDB_CHECK_POSITIVE], [AT_SETUP([$1]) - m4_if([$5], [], [], - [AT_XFAIL_IF([m4_version_prereq([$5], [false], [true])])]) AT_KEYWORDS([ovsdb positive $4]) - OVS_CHECK_LCOV([test-ovsdb $2], [0], [$3 + AT_CHECK([test-ovsdb $2], [0], [$3 ], []) AT_CLEANUP]) @@ -23,7 +19,7 @@ m4_define([OVSDB_CHECK_POSITIVE], m4_define([OVSDB_CHECK_NEGATIVE], [AT_SETUP([$1]) AT_KEYWORDS([ovsdb negative $4]) - OVS_CHECK_LCOV([test-ovsdb $2], [1], [], [stderr]) + AT_CHECK([test-ovsdb $2], [1], [], [stderr]) m4_assert(m4_len([$3])) AT_CHECK( [if grep -F -e "AS_ESCAPE([$3])" stderr @@ -41,12 +37,14 @@ m4_include([tests/ovsdb-data.at]) m4_include([tests/ovsdb-column.at]) m4_include([tests/ovsdb-table.at]) m4_include([tests/ovsdb-row.at]) +m4_include([tests/ovsdb-schema.at]) m4_include([tests/ovsdb-condition.at]) +m4_include([tests/ovsdb-mutation.at]) m4_include([tests/ovsdb-query.at]) m4_include([tests/ovsdb-transaction.at]) m4_include([tests/ovsdb-execution.at]) m4_include([tests/ovsdb-trigger.at]) -m4_include([tests/ovsdb-file.at]) +m4_include([tests/ovsdb-tool.at]) m4_include([tests/ovsdb-server.at]) m4_include([tests/ovsdb-monitor.at]) m4_include([tests/ovsdb-idl.at])