From 4671da409aee0f202f32ff17853bee9e5d7f8ffb Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 2 Nov 2011 09:14:10 +1100 Subject: [PATCH] autotest: fixed path to SIL binary --- Tools/autotest/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/autotest/util.py b/Tools/autotest/util.py index df6fd981be..f08421044f 100644 --- a/Tools/autotest/util.py +++ b/Tools/autotest/util.py @@ -50,7 +50,7 @@ def build_SIL(atype): def start_SIL(atype): '''launch a SIL instance''' - ret = pexpect.spawn('tmp/%s.build/%s.elf' % (atype, atype), + ret = pexpect.spawn(reltopdir('tmp/%s.build/%s.elf' % (atype, atype)), logfile=sys.stdout, timeout=5) ret.expect('Waiting for connection') return ret