From 1497d67ce8a16c40c5c9c87b23203331dad41012 Mon Sep 17 00:00:00 2001 From: Qiu Tingting Date: Tue, 30 May 2023 14:40:29 +0800 Subject: agl-test-framework: add ptest flex Add ptest flex in agl-test-framework. Testing costs 8s. Bug-AGL: SPEC-4753 Signed-off-by: Qiu Tingting Change-Id: I62beb386b6d9f3ad4919efab6221937e422e6843 --- tests/flex/run_tests.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 tests/flex/run_tests.py (limited to 'tests/flex/run_tests.py') diff --git a/tests/flex/run_tests.py b/tests/flex/run_tests.py new file mode 100644 index 0000000..a315551 --- /dev/null +++ b/tests/flex/run_tests.py @@ -0,0 +1,27 @@ +import pytest +import plugins.agl_test_log as log +from plugins.agl_test_ptest_base import PTESTBase + +class Flex(PTESTBase): + def __init__(self): + super().__init__(test_name="flex") + + def log_process(self): + log_file = self.get_logfile() + self.case_info_list = log.log_process_gnu(log_file) + +instance = Flex() +instance.run_ptest() + +@pytest.fixture(scope='module') +def testbase(): + yield instance + #package log files and make report file + instance.log_report() + +@pytest.mark.parametrize('case_name', instance.case_info_list.keys()) +def test_flex(testbase: Flex, case_name): + testbase.run_case(case_name) + +if __name__ == '__main__': + pytest.main("-s run_tests") -- cgit 1.2.3-korg