autotest: fixed wind specification for arduplane test

This commit is contained in:
Andrew Tridgell 2011-12-13 19:04:00 +11:00
parent d416013bd8
commit 616c6f27a6
1 changed files with 2 additions and 2 deletions

View File

@ -9,6 +9,7 @@ testdir=os.path.dirname(os.path.realpath(__file__))
HOME_LOCATION='-35.362938,149.165085,584,270'
WIND="5,180,0.2" # speed,direction,variance
homeloc = None
@ -215,8 +216,7 @@ def fly_ArduPlane(viewerip=None):
util.pexpect_close(sil)
cmd = util.reltopdir("Tools/autotest/jsbsim/runsim.py")
cmd += " --home=%s --wind=5,180,0.2" % (
HOME_LOCATION, util.reltopdir("Tools/autotest/jsbsim"))
cmd += " --home=%s --wind=%s" % (HOME_LOCATION, WIND)
if viewerip:
cmd += " --fgout=%s:5503" % viewerip