systemc: Fix a small bug in verify.py.
authorGabe Black <gabeblack@google.com>
Wed, 15 Aug 2018 01:42:43 +0000 (18:42 -0700)
committerGabe Black <gabeblack@google.com>
Wed, 22 Aug 2018 00:48:39 +0000 (00:48 +0000)
The src_dir method of the Test class was using the wrong attribute of
the test from the json file. It should use path, but was using src_dir.

Change-Id: Iaaaf31c31b11b68ecd7dd98807e6b78597cebb99
Reviewed-on: https://gem5-review.googlesource.com/12029
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>

src/systemc/tests/verify.py

index aa9ec352844c4fa33407f4ac025ba34a8c057dd6..d46e3cc82ac6256964cc02431a82e3818b476506 100755 (executable)
@@ -70,7 +70,7 @@ class Test(object):
         return os.path.join(self.build_dir, tests_rel_path, self.path)
 
     def src_dir(self):
-        return os.path.join(script_path, self.path)
+        return os.path.join(script_dir, self.path)
 
     def golden_dir(self):
         return os.path.join(self.src_dir(), 'golden')