summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2018-11-08 19:19:00 -0800
committerGary E. Miller <gem@rellim.com>2018-11-08 19:19:00 -0800
commit907446ce24c5e7404586de16c69faad6d6d81aaa (patch)
tree4317cce3f7b9b40e2d59119a014502579c0d6d1b /SConstruct
parent2ac4224ea79b90b45d1aa36880178117e45ae4ef (diff)
downloadgpsd-907446ce24c5e7404586de16c69faad6d6d81aaa.tar.gz
test_misc.py: This test was not running during check.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct9
1 files changed, 8 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 7bd357ca..d6fffd90 100644
--- a/SConstruct
+++ b/SConstruct
@@ -2177,15 +2177,21 @@ time_regress = Utility('time-regress', [test_mktime], [
'$SRCDIR/tests/test_mktime'
])
-# Regression test the unpacking code in libgps
if not env['python']:
unpack_regress = None
+ misc_regress = None
else:
+ # Regression test the unpacking code in libgps
unpack_regress = UtilityWithHerald(
'Testing the client-library sentence decoder...',
'unpack-regress', [test_libgps], [
'$SRCDIR/regress-driver $REGRESSOPTS -c'
' $SRCDIR/test/clientlib/*.log', ])
+ # Unit-test the bitfield extractor
+ misc_regress = Utility('misc-regress', [], [
+ '$SRCDIR/test_misc.py'
+ ])
+
# Build the regression test for the sentence unpacker
Utility('unpack-makeregress', [test_libgps], [
@@ -2261,6 +2267,7 @@ test_nondaemon = [
maidenhead_locator_regress,
matrix_regress,
method_regress,
+ misc_regress,
packet_regress,
python_compilation_regress,
python_versions,