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