Fix compile skip path handling for targeted tests.

This commit is contained in:
Matt Clay 2016-11-30 09:04:04 -08:00
parent d22f7b4919
commit bee58fe890

View file

@ -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))