From bf380db1a1a501ade7ae517d88aaa41d8ca2db24 Mon Sep 17 00:00:00 2001 From: Hoa Nguyen Date: Thu, 3 Sep 2020 01:45:27 -0700 Subject: [PATCH] ext: Make the testing-results folder visible Currently, testlib will write outputs to .testing-results, which is a hidden folder. However, the outputs in the folder are useful for debugging. This commit makes this folder visible on Linux systems. Change-Id: I158e1a4a62c7b494309a0a4bf6521fedd04cbe22 Signed-off-by: Hoa Nguyen Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/34015 Reviewed-by: Jason Lowe-Power Maintainer: Jason Lowe-Power Tested-by: kokoro --- ext/testlib/configuration.py | 2 +- tests/.gitignore | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/testlib/configuration.py b/ext/testlib/configuration.py index 48fd2a075..1267c25b8 100644 --- a/ext/testlib/configuration.py +++ b/ext/testlib/configuration.py @@ -213,7 +213,7 @@ def define_defaults(defaults): defaults.base_dir = os.path.abspath(os.path.join(absdirpath(__file__), os.pardir, os.pardir)) - defaults.result_path = os.path.join(os.getcwd(), '.testing-results') + defaults.result_path = os.path.join(os.getcwd(), 'testing-results') defaults.resource_url = 'http://dist.gem5.org/dist/develop' defaults.resource_path = os.path.abspath(os.path.join(defaults.base_dir, 'tests', diff --git a/tests/.gitignore b/tests/.gitignore index 6e620f5d3..44c98e698 100644 --- a/tests/.gitignore +++ b/tests/.gitignore @@ -1,2 +1,2 @@ -.testing-results +testing-results gem5/resources -- 2.30.2