summaryrefslogtreecommitdiff
path: root/tester/rtems-test
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2015-02-08 17:12:04 +1100
committerChris Johns <chrisj@rtems.org>2015-02-08 17:12:04 +1100
commitb7d48ef5a4a09010305a5981f64005161a34409d (patch)
treed67a781bd460bfc367d1e038ed9f3a8d870884fd /tester/rtems-test
parent73388116079288523c84f4c93fe19646c34644b9 (diff)
Install the rtems-test command.
This installs the Python RTEMS Toolkit. The copmiler has been switched from forcing gcc to allowing waf to detect the host's tool chain.
Diffstat (limited to 'tester/rtems-test')
-rwxr-xr-xtester/rtems-test3
1 files changed, 2 insertions, 1 deletions
diff --git a/tester/rtems-test b/tester/rtems-test
index 53c81cd..1684abc 100755
--- a/tester/rtems-test
+++ b/tester/rtems-test
@@ -32,7 +32,8 @@
import sys, os
base = os.path.dirname(os.path.abspath(sys.argv[0]))
parent = os.path.dirname(base)
-sys.path = [base, parent] + sys.path
+rtems = os.path.join(parent, 'share', 'rtems')
+sys.path = [base, parent, rtems] + sys.path
try:
import rt.test