From 25de13d0c445270260dead71db75fb8f4bc69dfa Mon Sep 17 00:00:00 2001 From: gmlwns2000 Date: Mon, 7 Mar 2022 21:11:45 +0900 Subject: [PATCH] fuzz: remove inline prob flag --- tests/fuzz.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/tests/fuzz.py b/tests/fuzz.py index 8efa2fb..2607fb8 100644 --- a/tests/fuzz.py +++ b/tests/fuzz.py @@ -119,7 +119,6 @@ def generate(tests_dir, bin_path, seed=None, easy=False): "--max-block-depth", "2", "--max-block-size", "2", "--max-struct-fields", "3", - "--inline-function-prob", "10", ] args = [bin_path] + options @@ -270,13 +269,7 @@ if __name__ == "__main__": parser.add_argument('--easy', action='store_true', help="Generate more easy code by csmith option") parser.add_argument('--seed', type=int, help="Provide seed of fuzz generation", default=-1) args = parser.parse_args() - - if args.print and args.irgen: - raise Exception("Choose an option used for fuzzing: '--print' or '--irgen', NOT both") - - if args.print: - fuzz_arg = "-p" - elif args.irgen: + "--inline-function-prob", "10", fuzz_arg = "-i" else: raise Exception("Specify fuzzing argument")