Commit 8667527f authored by Rich Prohaska's avatar Rich Prohaska

fix the test order. addresses #159

git-svn-id: file:///svn/tokudb@1124 c7de825b-a66e-492c-adef-691d508d4ae1
parent b8a3e92d
...@@ -2500,11 +2500,6 @@ static void test_dup() { ...@@ -2500,11 +2500,6 @@ static void test_dup() {
static void pma_tests (void) { static void pma_tests (void) {
toku_memory_check=1; toku_memory_check=1;
test_pma_cursor_delete_under(); local_memory_check_all_free();
test_pma_cursor_delete_under_mode(3, TOKU_DB_DUP); local_memory_check_all_free();
test_pma_cursor_delete_under_mode(3, TOKU_DB_DUP+TOKU_DB_DUPSORT); local_memory_check_all_free();
return;
toku_test_keycompare(); local_memory_check_all_free(); toku_test_keycompare(); local_memory_check_all_free();
test_pma_compare_fun(0); local_memory_check_all_free(); test_pma_compare_fun(0); local_memory_check_all_free();
test_pma_compare_fun(1); local_memory_check_all_free(); test_pma_compare_fun(1); local_memory_check_all_free();
...@@ -2529,6 +2524,7 @@ static void pma_tests (void) { ...@@ -2529,6 +2524,7 @@ static void pma_tests (void) {
test_pma_cursor_set_range(); local_memory_check_all_free(); test_pma_cursor_set_range(); local_memory_check_all_free();
test_pma_cursor_delete_under(); local_memory_check_all_free(); test_pma_cursor_delete_under(); local_memory_check_all_free();
test_pma_cursor_delete_under_mode(3, TOKU_DB_DUP); local_memory_check_all_free(); test_pma_cursor_delete_under_mode(3, TOKU_DB_DUP); local_memory_check_all_free();
test_pma_cursor_delete_under_mode(3, TOKU_DB_DUP+TOKU_DB_DUPSORT); local_memory_check_all_free();
test_pma_cursor_set_both(); local_memory_check_all_free(); test_pma_cursor_set_both(); local_memory_check_all_free();
test_dup(); test_dup();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment