summaryrefslogtreecommitdiff
path: root/tester/rtems-test
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2015-10-18 19:19:08 +1100
committerChris Johns <chrisj@rtems.org>2015-10-19 09:06:49 +1100
commit0382b6863be01ad365d7ae272b61cfef4870f631 (patch)
treee015eda07f1f15bf1223461aa6c9ac85d482392f /tester/rtems-test
parent2f11c3631d3bcaf5447019bb4784c231f079285b (diff)
Fix Windows build issues.
Fix biulding the mmap Windows code. Fix installing the files for Windows.
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 1684abc..6f80df2 100755
--- a/tester/rtems-test
+++ b/tester/rtems-test
@@ -33,7 +33,8 @@ 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 = [base, parent, rtems] + sys.path
+tester = os.path.join(parent, 'share', 'rtems', 'tester')
+sys.path = [parent, rtems, tester] + sys.path
try:
import rt.test