mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-06 15:43:15 +00:00
testsuite: Parse TCFG path based on OS path separator.
This commit is contained in:
@@ -35,6 +35,7 @@
|
|||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
|
||||||
|
import os
|
||||||
import os.path
|
import os.path
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
@@ -69,7 +70,7 @@ if sys_args[1] == '-v':
|
|||||||
|
|
||||||
mode = sys_args[args + 1]
|
mode = sys_args[args + 1]
|
||||||
bsp = sys_args[args + 2]
|
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])]
|
testconfig = [find_testdata(includepaths, sys_args[args + 3])]
|
||||||
tests = sys_args[args + 5:]
|
tests = sys_args[args + 5:]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user