From caad45aacb1542b199afca9e1c612a79f59046d0 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 17 Jun 2013 09:27:35 +1000 Subject: [PATCH] autotest: fixed pymavlink tools paths --- Tools/autotest/autotest.py | 2 +- Tools/autotest/autotest_jenkins.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Tools/autotest/autotest.py b/Tools/autotest/autotest.py index b419dba249..6aa9baaab7 100755 --- a/Tools/autotest/autotest.py +++ b/Tools/autotest/autotest.py @@ -117,7 +117,7 @@ def convert_gpx(): import glob mavlog = glob.glob(util.reltopdir("../buildlogs/*.tlog")) for m in mavlog: - util.run_cmd(util.reltopdir("../mavlink/pymavlink/examples/mavtogpx.py") + " --nofixcheck " + m) + util.run_cmd(util.reltopdir("../mavlink/pymavlink/tools/mavtogpx.py") + " --nofixcheck " + m) gpx = m + '.gpx' kml = m + '.kml' util.run_cmd('gpsbabel -i gpx -f %s -o kml,units=m,floating=1,extrude=1 -F %s' % (gpx, kml), checkfail=False) diff --git a/Tools/autotest/autotest_jenkins.py b/Tools/autotest/autotest_jenkins.py index cf75f9c0ba..47fd77d337 100755 --- a/Tools/autotest/autotest_jenkins.py +++ b/Tools/autotest/autotest_jenkins.py @@ -90,7 +90,7 @@ def convert_gpx(): import glob mavlog = glob.glob(util.reltopdir("../buildlogs/*.tlog")) for m in mavlog: - util.run_cmd(util.reltopdir("../mavlink/pymavlink/examples/mavtogpx.py") + " --nofixcheck " + m) + util.run_cmd(util.reltopdir("../mavlink/pymavlink/tools/mavtogpx.py") + " --nofixcheck " + m) gpx = m + '.gpx' kml = m + '.kml' util.run_cmd('gpsbabel -i gpx -f %s -o kml,units=m,floating=1,extrude=1 -F %s' % (gpx, kml), checkfail=False)