summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2012-04-20 15:26:13 -0400
committerEric S. Raymond <esr@thyrsus.com>2012-04-20 15:26:13 -0400
commitd679a3257de346d129fcf76f6ee7aea68a622fe6 (patch)
tree14540391ba6da8b04392c5ec5e0c9585dd86c23b /SConstruct
parent464b4d3e4a4ec77cecf0e6f8fa818b76fb949146 (diff)
downloadgpsd-d679a3257de346d129fcf76f6ee7aea68a622fe6.tar.gz
Add the bits tester to the normal regression tests.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct11
1 files changed, 6 insertions, 5 deletions
diff --git a/SConstruct b/SConstruct
index 81cafb1b..22bc9f4c 100644
--- a/SConstruct
+++ b/SConstruct
@@ -1284,6 +1284,11 @@ audit = env.Alias('audit',
# Note that the *-makeregress targets re-create the *.log.chk source
# files from the *.log source files.
+# Unit-test the bitfield extractor
+bits_regress = Utility('bits-regress', [test_bits], [
+ '$SRCDIR/test_bits --quiet'
+ ])
+
# Check that all Python modules compile properly
if env['python']:
def check_compile(target, source, env):
@@ -1411,11 +1416,6 @@ json_regress = Utility('json-regress', [test_json], [
'$SRCDIR/test_json'
])
-# Unit-test the bitfield extractor - not in normal tests
-bits_regress = Utility('bits-regress', [test_bits], [
- '$SRCDIR/test_bits'
- ])
-
# Run a valgrind audit on the daemon - not in normal tests
valgrind_audit = Utility('valgrind-audit', ['valgrind-audit.py'], 'valgrind-audit.py')
@@ -1425,6 +1425,7 @@ flocktest = Utility("flocktest", [], "cd devtools; flocktest " + gitrepo)
# Run all normal regression tests
check = env.Alias('check', [
python_compilation_regress,
+ bits_regress,
gps_regress,
rtcm_regress,
aivdm_regress,