From aa5c46210b16ce90f077f33e7d9d65fc489fe069 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Wed, 28 Nov 2018 20:32:46 +1100 Subject: testsuite: Parse TCFG path based on OS path separator. --- testsuites/rtems-test-check.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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:] -- cgit v1.2.3