diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2013-07-20 14:45:31 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2013-07-20 14:45:31 +0000 |
commit | e72170d41275be3b9085928060817cd7d359d954 (patch) | |
tree | 1620fc1f0e148eb54ed8b69b0f483bc24f0f8de0 /src/htscoremain.c | |
parent | a228111f97b3f87ce0e11cb05007ac6a184e220b (diff) |
More stressing hashtable unit tests
Diffstat (limited to 'src/htscoremain.c')
-rw-r--r-- | src/htscoremain.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/htscoremain.c b/src/htscoremain.c index 7ef734b..90f89e8 100644 --- a/src/htscoremain.c +++ b/src/htscoremain.c @@ -2414,6 +2414,14 @@ HTSEXT_API int hts_main2(int argc, char **argv, httrackp * opt) { { TEST_ADD, 4, 1 }, /* check 4/1 */ { TEST_ADD, 4, 2 }, /* check 4/2 */ { TEST_DEL, 4, 3 }, /* check 4/3 */ + { DO_DEL, 4, 0 }, /* del 4/0 */ + { DO_DEL, 4, 1 }, /* del 4/1 */ + { DO_DEL, 4, 2 }, /* del 4/2 */ + /* empty here */ + { TEST_DEL, 1, 0 }, /* check */ + { DO_ADD, 4, 0 }, /* add 4/0 */ + { DO_ADD, 4, 1 }, /* add 4/1 */ + { DO_ADD, 4, 2 }, /* add 4/2 */ { DO_DEL, 42, 0 }, /* add 42/0 */ { TEST_DEL, 42, 0 }, /* check 42/0 */ { TEST_ADD, 42, 2 }, /* check 42/2 */ |