/arkcompiler/toolchain/test/autotest/scenario_test/ |
H A D | conftest.py | 17 Description: Fixtures of pytest. 23 import pytest namespace 28 @pytest.fixture(scope='class') 48 @pytest.fixture(scope='class') 68 @pytest.fixture(scope='class') 83 @pytest.fixture(scope='class') 98 @pytest.fixture(scope='class') 117 @pytest.fixture(scope='class')
|
H A D | test_cpu_profiler_02.py | 24 import pytest
namespace 32 @pytest.mark.cpu_profiler
33 @pytest.mark.timeout(40)
|
H A D | test_heap_profiler_01.py | 24 import pytest
namespace 32 @pytest.mark.heap_profiler
33 @pytest.mark.timeout(40)
|
H A D | test_cpu_profiler_01.py | 24 import pytest
namespace 32 @pytest.mark.cpu_profiler
33 @pytest.mark.timeout(40)
|
H A D | test_heap_profiler_02.py | 24 import pytest
namespace 31 @pytest.mark.heap_profiler
32 @pytest.mark.timeout(40)
|
H A D | test_debug_04.py | 24 import pytest
namespace 32 @pytest.mark.debug
33 @pytest.mark.timeout(30)
|
H A D | test_debug_02.py | 25 import pytest
namespace 33 @pytest.mark.debug
34 @pytest.mark.timeout(30)
|
H A D | test_debug_03.py | 24 import pytest
namespace 32 @pytest.mark.debug
33 @pytest.mark.timeout(30)
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/ |
H A D | main.py | 22 import pytest namespace 26 sys.exit(pytest.main())
|
H A D | conftest.py | 18 from pytest import Config
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/internal_tests/ |
H A D | __init__.py | 20 import pytest namespace 21 from pytest import Config, Item, Parser 56 internal_test = pytest.mark.skip(reason="need internal_tests=True option to run")
|
H A D | test_mirror.py | 20 import pytest namespace 30 return pytest.param( 45 @pytest.mark.parametrize( 104 @pytest.mark.parametrize( 177 # @pytest.mark.skip
|
H A D | test_timeout.py | 21 from pytest import mark
|
H A D | test_expect.py | 21 from pytest import mark
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/tests/ |
H A D | test_compiler_errors.py | 18 import pytest namespace 32 with pytest.raises(compiler.CompileError, match=r"TypeError: Unresolved reference error"):
|
H A D | test_this.py | 21 import pytest namespace 116 with pytest.warns(UserWarning, match=f"Unknown breakpoint on line {unk_bp.line_number}"):
|
H A D | test_stepping.py | 20 from pytest import mark
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/ |
H A D | timeout.py | 23 import pytest namespace 25 from pytest import Config, Function, Item, Parser, hookimpl 80 item.add_marker(pytest.mark.timeout(seconds=seconds)) 97 # So that it shows up in 'pytest --markers' output:
|
H A D | __init__.py | 18 from pytest import register_assert_rewrite
|
H A D | logs.py | 22 from pytest import FixtureRequest, fixture
|
H A D | dev_log.py | 22 from pytest import FixtureRequest, Parser, fixture
|
/arkcompiler/toolchain/test/autotest/ |
H A D | run.py | 25 import pytest namespace 68 pytest.main(args)
|
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/tests/ |
H A D | test_shell.py | 22 import pytest # type: ignore namespace 33 pytest.skip("POSIX-only test")
|
H A D | test_cli.py | 22 import pytest # type: ignore namespace 53 with pytest.raises(SystemExit):
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/mirrors/ |
H A D | _plugin.py | 18 from pytest import Item, Session, hookimpl
|