summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2018-11-28 20:32:46 +1100
committerChris Johns <chrisj@rtems.org>2018-11-28 20:32:46 +1100
commitaa5c46210b16ce90f077f33e7d9d65fc489fe069 (patch)
tree71eb81d8afa8b4be098921d784b8459c120510e5
parentpsxtests: add POSIX API signature compliance tests for dirent.h file (GCI 2018) (diff)
downloadrtems-aa5c46210b16ce90f077f33e7d9d65fc489fe069.tar.bz2
testsuite: Parse TCFG path based on OS path separator.
-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:]