Lines Matching +full:valgrind +full:- +full:fuzz +full:- +full:test
7 # http://www.apache.org/licenses/LICENSE-2.0
21 NOTE: Needs to be run from root of the OSS-Fuzz source checkout.
25 --old_commit 1e403e9259a1abedf108ab86f711ba52c907226d
26 --new_commit f79be4f2330f4b89ea2f42e1c44ca998c59a0c0f
27 --fuzz_target rules_fuzzer
28 --project_name yara
29 --testcase infra/yara_testcase
30 --sanitizer address
74 parser.add_argument('--project_name',
77 parser.add_argument('--new_commit',
80 parser.add_argument('--old_commit',
83 parser.add_argument('--fuzz_target',
86 parser.add_argument('--test_case_path',
87 help='The path to test case.',
89 parser.add_argument('--engine',
92 parser.add_argument('--sanitizer',
95 parser.add_argument('--type',
99 parser.add_argument('--architecture', default='x86_64')
129 if token_location == -1:
141 command = ['docker', 'run', '--rm', '--privileged']
143 command.append('-i')
151 valgrind=False,
163 # pylint: disable=unsupported-membership-test
173 # pylint: disable=too-many-locals
174 # pylint: disable=too-many-arguments
175 # pylint: disable=too-many-statements
179 # pylint: disable=too-many-branches
202 old_idx = len(commit_list) - 1
250 old_idx = len(commit_list) - 1
259 while old_idx - new_idx > 1:
284 # pylint: disable=too-many-locals
285 # pylint: disable=too-many-arguments
289 specific error from a fuzz testcase_path.
295 testcase_path: The file path of the test case that triggers the error
313 oss_fuzz_repo_manager.git(['clean', '-fxd', 'projects'])