From 907446ce24c5e7404586de16c69faad6d6d81aaa Mon Sep 17 00:00:00 2001 From: "Gary E. Miller" Date: Thu, 8 Nov 2018 19:19:00 -0800 Subject: test_misc.py: This test was not running during check. --- SConstruct | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'SConstruct') 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, -- cgit v1.2.1