summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/contrib/tts/launcher.py
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2015-05-15 13:15:08 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-05-29 11:59:46 +0100
commit29143915ae543f3cd389a7b1e32967ab42730e45 (patch)
tree0d968e896f85073e5b19e0244e2729f9bd8cec01 /bitbake/lib/toaster/contrib/tts/launcher.py
parent356809ff4019eaef19e1f768db5b77fbcdd482e4 (diff)
downloadpoky-29143915ae543f3cd389a7b1e32967ab42730e45.tar.gz
bitbake: toaster/tts: Fix tests
(Bitbake rev: f4257f8df3be0627bdc7209fe34d674c42baf8d2) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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)