From 5dda7fb959682f9e051a12de15b982f03adbc1fb Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Wed, 16 Jan 2019 14:58:11 -0800 Subject: tests: Fix tests/main.py so it can be run from anywhere. tests/main.py was trying to find paths relative to itself using the string __name__ (which was __main__) when it should have been using the string __file__ which holds the name of the file being executed. Change-Id: I5ff4c42fc7d8b75ff6b96c3cde61baf731d84738 Reviewed-on: https://gem5-review.googlesource.com/c/15675 Reviewed-by: Jason Lowe-Power Maintainer: Jason Lowe-Power --- tests/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/main.py b/tests/main.py index 509724ed7..779445d81 100755 --- a/tests/main.py +++ b/tests/main.py @@ -10,7 +10,7 @@ from __future__ import print_function import sys import os -base_dir = os.path.dirname(os.path.abspath(__name__)) +base_dir = os.path.dirname(os.path.abspath(__file__)) ext_path = os.path.join(base_dir, os.pardir, 'ext') sys.path.insert(0, base_dir) -- cgit v1.2.3