cf3a842edb
This adds a first simple version of the inspector fuzzer, which is a stripped-down version of the inspector-test executable. The fuzzer generates inputs which are compatible with inspector-test. There are still memory leaks, and the fuzzer will probably run into timeouts most of the time. Both of this will be addressed in follow-ups. R=szuend@chromium.org, machenbach@chromium.org Bug: chromium:1142437 Change-Id: I4d13da460f571d791a3642b0705a1f07b442c11b Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2505722 Commit-Queue: Clemens Backes <clemensb@chromium.org> Reviewed-by: Simon Zünd <szuend@chromium.org> Reviewed-by: Michael Achenbach <machenbach@chromium.org> Cr-Commit-Position: refs/heads/master@{#70922}
71 lines
1.5 KiB
Python
71 lines
1.5 KiB
Python
# Copyright 2016 the V8 project authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import os
|
|
|
|
from testrunner.local import testsuite
|
|
from testrunner.objects import testcase
|
|
|
|
SUB_TESTS = [
|
|
'inspector',
|
|
'json',
|
|
'parser',
|
|
'regexp',
|
|
'regexp_builtins',
|
|
'multi_return',
|
|
'wasm',
|
|
'wasm_async',
|
|
'wasm_code',
|
|
'wasm_compile',
|
|
]
|
|
|
|
class VariantsGenerator(testsuite.VariantsGenerator):
|
|
def _get_variants(self, test):
|
|
return self._standard_variant
|
|
|
|
|
|
class TestLoader(testsuite.GenericTestLoader):
|
|
@property
|
|
def test_dirs(self):
|
|
return SUB_TESTS
|
|
|
|
def _to_relpath(self, abspath, _):
|
|
return os.path.relpath(abspath, self.suite.root)
|
|
|
|
def _should_filter_by_name(self, _):
|
|
return False
|
|
|
|
class TestSuite(testsuite.TestSuite):
|
|
def _test_loader_class(self):
|
|
return TestLoader
|
|
|
|
def _test_class(self):
|
|
return TestCase
|
|
|
|
def _variants_gen_class(self):
|
|
return VariantsGenerator
|
|
|
|
|
|
class TestCase(testcase.TestCase):
|
|
def _get_files_params(self):
|
|
suite, name = self.path.split(os.path.sep)
|
|
return [os.path.join(self.suite.root, suite, name)]
|
|
|
|
def _get_variant_flags(self):
|
|
return []
|
|
|
|
def _get_statusfile_flags(self):
|
|
return []
|
|
|
|
def _get_mode_flags(self):
|
|
return []
|
|
|
|
def get_shell(self):
|
|
group, _ = self.path.split(os.path.sep, 1)
|
|
return 'v8_simple_%s_fuzzer' % group
|
|
|
|
|
|
def GetSuite(*args, **kwargs):
|
|
return TestSuite(*args, **kwargs)
|