Fix compile skip path handling for targeted tests.
This commit is contained in:
parent
d22f7b4919
commit
bee58fe890
1 changed files with 1 additions and 1 deletions
|
@ -562,7 +562,7 @@ def command_compile(args):
|
|||
if skip_paths:
|
||||
cmd += ['-x', '|'.join(skip_paths)]
|
||||
|
||||
cmd += [target.path for target in include]
|
||||
cmd += [target.path if target.path == '.' else './%s' % target.path for target in include]
|
||||
|
||||
version_commands.append((version, cmd))
|
||||
|
||||
|
|
Loading…
Reference in a new issue