diff options
Diffstat (limited to 'tests/obj/del-counter-twice_err.t')
-rw-r--r-- | tests/obj/del-counter-twice_err.t | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/obj/del-counter-twice_err.t b/tests/obj/del-counter-twice_err.t new file mode 100644 index 0000000..61963be --- /dev/null +++ b/tests/obj/del-counter-twice_err.t @@ -0,0 +1,7 @@ +add_table(NFPROTO_IPV4, "test", NULL, NULL, NULL); +add_obj_counter("test", NULL, NULL, NULL, NULL); +commit(); +set_table(NFPROTO_IPV4, "test"); +del_obj_unknown("test", NULL, NULL, "1"); +del_obj_unknown("test", NULL, NULL, "1"); +commit(); |