51af4f58c0
The wasm call fuzzer is superseded by the wasm compile fuzzer, thus remove it. The chromium side will land in https://crrev.com/c/895531. R=ahaas@chromium.org Change-Id: I211d9f8ad2ca5432dbbc6ecce0b6e13760f1af60 Reviewed-on: https://chromium-review.googlesource.com/895534 Reviewed-by: Andreas Haas <ahaas@chromium.org> Commit-Queue: Clemens Hammacher <clemensh@chromium.org> Cr-Commit-Position: refs/heads/master@{#51034}
62 lines
1.7 KiB
Python
62 lines
1.7 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
|
|
|
|
|
|
class VariantsGenerator(testsuite.VariantsGenerator):
|
|
def _get_variants(self, test):
|
|
return self._standard_variant
|
|
|
|
|
|
class TestSuite(testsuite.TestSuite):
|
|
SUB_TESTS = ( 'json', 'parser', 'regexp_builtins', 'regexp', 'multi_return', 'wasm',
|
|
'wasm_async', 'wasm_code', 'wasm_compile',
|
|
'wasm_data_section', 'wasm_function_sigs_section',
|
|
'wasm_globals_section', 'wasm_imports_section', 'wasm_memory_section',
|
|
'wasm_names_section', 'wasm_types_section' )
|
|
|
|
def ListTests(self):
|
|
tests = []
|
|
for subtest in TestSuite.SUB_TESTS:
|
|
for fname in os.listdir(os.path.join(self.root, subtest)):
|
|
if not os.path.isfile(os.path.join(self.root, subtest, fname)):
|
|
continue
|
|
test = self._create_test('%s/%s' % (subtest, fname))
|
|
tests.append(test)
|
|
tests.sort()
|
|
return tests
|
|
|
|
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('/')
|
|
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('/', 1)
|
|
return 'v8_simple_%s_fuzzer' % group
|
|
|
|
|
|
def GetSuite(*args, **kwargs):
|
|
return TestSuite(*args, **kwargs)
|