Skip to content

Commit

Permalink
remove unneeded changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Tmonster committed Aug 26, 2024
1 parent 313a562 commit 2313385
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion scripts/run_fuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
elif param == '--no_checks':
perform_checks = False
elif param == '--enable_verification':
verification = param.replace('--enable_verification=', '').lower() == 'true'
verification = True
elif param.startswith('--shell='):
shell = param.replace('--shell=', '')
elif param.startswith('--seed='):
Expand Down
8 changes: 4 additions & 4 deletions test/sql/call_fuzzyduck.test
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ require sqlsmith
statement ok
call fuzzyduck(max_queries=2, seed=933847600, verbose_output=1, log='sqlsmith.log', complete_log='sqlsmith.complete.log', enable_verification=True);

#statement ok
#call fuzz_all_functions(seed=10, log='log_functions.txt', complete_log='clog_functions.txt' );
statement ok
call fuzz_all_functions(seed=10, log='log_functions.txt', complete_log='clog_functions.txt' );

#statement ok
#call fuzzyduck(max_queries=10, seed=4, verbose_output=1, log='__TEST_DIR__/logs.txt', complete_log='__TEST_DIR__/clog.txt', enable_verification=True);
statement ok
call fuzzyduck(max_queries=10, seed=4, verbose_output=1, log='__TEST_DIR__/logs.txt', complete_log='__TEST_DIR__/clog.txt', enable_verification=True);

0 comments on commit 2313385

Please sign in to comment.