X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftest-ovsdb.c;h=1b9ea2095ae01679dcea5007fa661838de63ce7a;hb=2bcf7df6f7a87d8940deff6fbbc359b0a310a74a;hp=1cdf69ae88667cf9702cbfc8e96a50e3af83738d;hpb=da897f41cd795e325ec5ce773a70a819100bd26e;p=openvswitch diff --git a/tests/test-ovsdb.c b/tests/test-ovsdb.c index 1cdf69ae..1b9ea209 100644 --- a/tests/test-ovsdb.c +++ b/tests/test-ovsdb.c @@ -1779,7 +1779,7 @@ idl_set(struct ovsdb_idl *idl, char *commands, int step) struct idltest_simple *s; if (!arg1 || arg2) { - ovs_fatal(0, "\"set\" command requires 1 argument"); + ovs_fatal(0, "\"insert\" command requires 1 argument"); } s = idltest_simple_insert(txn); @@ -1788,12 +1788,12 @@ idl_set(struct ovsdb_idl *idl, char *commands, int step) const struct idltest_simple *s; if (!arg1 || arg2) { - ovs_fatal(0, "\"set\" command requires 1 argument"); + ovs_fatal(0, "\"delete\" command requires 1 argument"); } s = idltest_find_simple(idl, atoi(arg1)); if (!s) { - ovs_fatal(0, "\"set\" command asks for nonexistent " + ovs_fatal(0, "\"delete\" command asks for nonexistent " "i=%d", atoi(arg1)); } idltest_simple_delete(s);