Lines Matching refs:args
38 "--csmith-args",
51 "--bindgen-args",
97 args = parser.parse_args()
99 bindgen_args = args.bindgen_args
103 args.bindgen_args = bindgen_args
118 result = run_logged(["csmith", "-o", input.name] + shlex.split(args.csmith_args))
124 "--bindgen-args",
125 args.bindgen_args,
137 if args.creduce:
138 creduce(args, input.name, result)
140 print_issue_template(args, input.name, predicate_command, result)
142 if args.keep_going:
151 def creduce(args, failing_test_case, result):
161 args,
163 "--bindgen-args '{}' --expect-compile-fail --rustc-grep '{}'".format(
164 args.bindgen_args,
175 args,
177 "--bindgen-args '{}' --expect-layout-tests-fail --bindings-grep '{}' --layout-tests-grep '{}'".format(
178 args.bindgen_args,
186 def creduce_with_predicate_flags(args, failing_test_case, predicate_flags):
225 if not args.keep_going:
228 def print_issue_template(args, failing_test_case, predicate_command, result):