def is_reproducible_side_effect(testcase, target_path, reproduce_arguments): del testcase del reproduce_arguments if os.path.dirname(target_path) == self.oss_fuzz_build_path: raise fuzz_target.ReproduceError() return True
def is_reproducible_side_effect(_, target_path): if os.path.dirname(target_path) == self.oss_fuzz_build_path: raise fuzz_target.ReproduceError() return True