Skip reader test by default to allow profiling.

This commit is contained in:
Jesse D. McDonald 2009-11-13 01:40:46 -06:00
parent 439491a80e
commit 53b1cc213b
1 changed files with 2 additions and 1 deletions

View File

@ -38,7 +38,8 @@ int main(int argc, char **argv)
test_builtins(); test_builtins();
test_weak_boxes_and_wills(); test_weak_boxes_and_wills();
test_reader(); if (argc > 1)
test_reader();
test_garbage_collection(argc > 1); test_garbage_collection(argc > 1);
return 0; return 0;