shorten ht_test and random_test

This commit is contained in:
Evan Hunt
2018-03-08 23:31:22 -08:00
parent a4ebe83cdb
commit 9b753aa154
2 changed files with 15 additions and 6 deletions

View File

@@ -298,12 +298,12 @@ static void test_ht_iterator() {
ATF_TC(isc_ht_20);
ATF_TC_HEAD(isc_ht_20, tc) {
atf_tc_set_md_var(tc, "descr", "20 bit, 2M elements test");
atf_tc_set_md_var(tc, "descr", "20 bit, 200K elements test");
}
ATF_TC_BODY(isc_ht_20, tc) {
UNUSED(tc);
test_ht_full(20, 2000000);
test_ht_full(20, 200000);
}