summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/contrib/tts/launcher.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/contrib/tts/launcher.py')
-rwxr-xr-xbitbake/lib/toaster/contrib/tts/launcher.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/contrib/tts/launcher.py b/bitbake/lib/toaster/contrib/tts/launcher.py
index 5b63bc1de6..90c6d95c58 100755
--- a/bitbake/lib/toaster/contrib/tts/launcher.py
+++ b/bitbake/lib/toaster/contrib/tts/launcher.py
@@ -87,7 +87,7 @@ if __name__ == "__main__":
87 errtext = None 87 errtext = None
88 out = None 88 out = None
89 try: 89 try:
90 out = shellutils.run_shell_cmd("./runner.py %s" % next_task) 90 out = shellutils.run_shell_cmd("%s %s" % (os.path.join(os.path.dirname(__file__), "runner.py"), next_task))
91 pass 91 pass
92 except ShellCmdException as e: 92 except ShellCmdException as e:
93 print("Failed while running the test runner: %s", e) 93 print("Failed while running the test runner: %s", e)