Home
last modified time | relevance | path

Searched refs:TestFileBased (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/declgenparser/
Dtest_declgenparser.py21 from runner.test_file_based import TestFileBased
27 class TestDeclgenParser(TestFileBased):
29 TestFileBased.__init__(self, test_env, test_path, flags, test_id)
31 def do_run(self) -> TestFileBased:
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/parser/
Dtest_js_parser.py24 from runner.test_file_based import TestFileBased
30 class TestJSParser(TestFileBased):
32 TestFileBased.__init__(self, test_env, test_path, flags, test_id)
35 def do_run(self) -> TestFileBased:
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/system/
Dtest_ets_system.py24 from runner.test_file_based import TestFileBased
30 class TestETSSystem(TestFileBased):
32 TestFileBased.__init__(self, test_env, test_path, flags, test_id)
35 def do_run(self) -> TestFileBased:
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/astchecker/
Dtest_astchecker.py24 from runner.test_file_based import TestFileBased
32 class TestASTChecker(TestFileBased):
35 TestFileBased.__init__(self, test_env, test_path, flags, test_id)
39 def do_run(self) -> TestFileBased:
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/hermes/
Dtest_js_hermes.py23 from runner.test_file_based import TestFileBased
26 class TestJSHermes(TestFileBased):
28 TestFileBased.__init__(self, test_env, test_path, flags, test_id)
36 def do_run(self) -> TestFileBased:
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/test262/
Dtest_js_test262.py24 from runner.test_file_based import TestFileBased
27 class TestJSTest262(TestFileBased):
29 TestFileBased.__init__(self, test_env, test_path, flags, test_id)
35 def do_run(self) -> TestFileBased:
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/reports/
Dxml_view.py27 from runner.test_file_based import TestFileBased
89 …if not isinstance(test_result, TestFileBased) or not test_result.report or test_result.fail_kind i…
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/
Dtest_ets.py30 from runner.test_file_based import TestFileBased
33 class TestETS(TestFileBased):
35 TestFileBased.__init__(self, test_env, test_path, flags, test_id)
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/
Drunner_file_based.py41 from runner.test_file_based import TestFileBased
234 if not isinstance(test_result, TestFileBased):
235 TestCase().assertTrue(isinstance(test_result, TestFileBased))
327 def _process_failed(self, test_result: TestFileBased, ignored_still_failed: List[Test], argument
Dtest_file_based.py37 class TestFileBased(Test): class