From bee58fe8903bfdcc5948feb84cc8fe80db008207 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Wed, 30 Nov 2016 09:04:04 -0800 Subject: [PATCH] Fix compile skip path handling for targeted tests. --- test/runner/lib/executor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runner/lib/executor.py b/test/runner/lib/executor.py index 2140704b699..d7f68e05982 100644 --- a/test/runner/lib/executor.py +++ b/test/runner/lib/executor.py @@ -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))