Gabe Black has uploaded this change for review. (
https://gem5-review.googlesource.com/5221
Change subject: scons: Fix the regression tests.
......................................................................
scons: Fix the regression tests.
A recent scons cleanup introduced a small bug when setting the variant path
of
the regression test SConscript. When turned into a relative path, the
directory can be interpreted differently depending on what it's considered
relative to. When left as a scons node, there is no ambiguity.
Change-Id: I162afdc4fcef81db096ec8304f81bc98fa6bf899
---
M src/SConscript
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/SConscript b/src/SConscript
index 911e5a3..76bf8d1 100755
--- a/src/SConscript
+++ b/src/SConscript
@@ -1117,7 +1117,7 @@
# Set up regression tests.
SConscript(os.path.join(env.root.abspath, 'tests', 'SConscript'),
- variant_dir=Dir('tests').Dir(new_env.Label).path,
+ variant_dir=Dir('tests').Dir(new_env.Label),
exports={ 'env' : new_env }, duplicate=False)
# Start out with the compiler flags common to all compilers,
--
To view, visit https://gem5-review.googlesource.com/5221
To unsubscribe, or for help writing mail filters, visit
https://gem5-review.googlesource.com/settings
Gerrit-Project: public/gem5
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I162afdc4fcef81db096ec8304f81bc98fa6bf899
Gerrit-Change-Number: 5221
Gerrit-PatchSet: 1
Gerrit-Owner: Gabe Black <[email protected]>
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev