Perl tests are now part of the build system

This commit is contained in:
Dan Hirsch 2013-12-05 08:41:28 +01:00
parent 8c44d583e6
commit 2f3bc9c4b0
4 changed files with 27 additions and 9 deletions

View file

@ -35,7 +35,8 @@ int main(int argc, char** argv) {
register_parser_tests();
register_grammar_tests();
register_misc_tests();
register_benchmark_tests();
if (g_test_slow() || g_test_perf())
register_benchmark_tests();
g_test_run();
}