summaryrefslogtreecommitdiffstats
path: root/testsuites/rtems-test-check.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/rtems-test-check.py')
-rwxr-xr-xtestsuites/rtems-test-check.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuites/rtems-test-check.py b/testsuites/rtems-test-check.py
index 0a4970a4ab..8eef1a01c1 100755
--- a/testsuites/rtems-test-check.py
+++ b/testsuites/rtems-test-check.py
@@ -35,6 +35,7 @@
from __future__ import print_function
+import os
import os.path
import sys
@@ -69,7 +70,7 @@ if sys_args[1] == '-v':
mode = sys_args[args + 1]
bsp = sys_args[args + 2]
-includepaths = sys_args[args + 4].split(':')
+includepaths = sys_args[args + 4].split(os.pathsep)
testconfig = [find_testdata(includepaths, sys_args[args + 3])]
tests = sys_args[args + 5:]