From efd58f9b723c788200838e9004aa1d652ddddf38 Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Fri, 8 Sep 2023 10:17:36 -0700 Subject: [PATCH] tests: Remove ":" from testing results output dir name Colons in path names is not advisable. Change-Id: I7748a36cabafde69759f7a9892f7b8910470b85e --- tests/gem5/fixture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/gem5/fixture.py b/tests/gem5/fixture.py index 0f53539b40..05b599dd80 100644 --- a/tests/gem5/fixture.py +++ b/tests/gem5/fixture.py @@ -76,7 +76,7 @@ class TempdirFixture(Fixture): suiteUID = testitem.metadata.uid.suite testUID = testitem.metadata.name testing_result_folder = os.path.join( - config.result_path, "SuiteUID:" + suiteUID, "TestUID:" + testUID + config.result_path, "SuiteUID-" + suiteUID, "TestUID-" + testUID ) # Copy the output files of the run from /tmp to testing-results