summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2015-12-16 08:37:10 +1100
committerChris Johns <chrisj@rtems.org>2015-12-16 09:23:11 +1100
commit3175451a890e4a775cd149e4c52bf702ecd64b9d (patch)
tree79ea93767c174f17bab35aa4492fa9ddab26c534
parentFix the 4.11 branch build from git. (diff)
downloadrtems-tools-3175451a890e4a775cd149e4c52bf702ecd64b9d.tar.bz2
Fix running rtems-test from inside the git clone.
-rwxr-xr-xtester/rtems-test2
1 files changed, 1 insertions, 1 deletions
diff --git a/tester/rtems-test b/tester/rtems-test
index 32ec563..f573fea 100755
--- a/tester/rtems-test
+++ b/tester/rtems-test
@@ -33,7 +33,7 @@ import sys, os
base = os.path.dirname(os.path.abspath(sys.argv[0]))
parent = os.path.dirname(base)
rtems = os.path.join(parent, 'share', 'rtems')
-sys.path = [rtems, os.path.join(rtems, 'tester')] + sys.path
+sys.path = [parent, rtems, os.path.join(rtems, 'tester')] + sys.path
try:
import rt.test