Skip to content

Commit

Permalink
support/testing: package: gpsd: fix gpsfake command line
Browse files Browse the repository at this point in the history
The gpsfake command line has a typo (a missing space), which makes the
next gpsctl command to always fail.

This commit fixes the issue by adding the missing space.

Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/7391792948

Signed-off-by: Julien Olivain <[email protected]>
Signed-off-by: Thomas Petazzoni <[email protected]>
  • Loading branch information
jolivain authored and tpetazzoni committed Jul 23, 2024
1 parent 2822fdd commit 49156a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion support/testing/tests/package/test_gpsd.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def test_run(self):
# We start the "gpsfake" GPS emulator instead.
cmd = "gpsfake"
cmd += " --slow --cycle 0.1 --quiet"
cmd += "/root/udp-nmea.log &> /dev/null &"
cmd += " /root/udp-nmea.log &> /dev/null &"
self.assertRunOk(cmd)

# Wait a bit, to let the gpsfake and gpsd to settle...
Expand Down

0 comments on commit 49156a0

Please sign in to comment.