]> granicus.if.org Git - procps-ng/commitdiff
build-sys: Make check programs before check
authorCraig Small <csmall@enc.com.au>
Sat, 9 Jul 2016 04:11:06 +0000 (14:11 +1000)
committerCraig Small <csmall@enc.com.au>
Sat, 9 Jul 2016 05:00:19 +0000 (15:00 +1000)
For some unknown reason, check_PROGRAMS are not built before check.
They are built before recheck and after check, which isn't very
useful.

This means any tests by dejagnu that need those programs will fail.
On my console I get a build error, the CI merrily reports the error
but considers the build OK; go figure.

The kludge adds check_PROGRAMS to be a dependency to check.
Note, TESTS don't need to be included in this, because they are
properly compliled after the dejagnu tests but before they are
run.

Makefile.am

index 52d4fbaadbf9bf060475e43dbbdecd24ca9f9dae..4d316855086acd503532b0f428d057b461dcec0b 100644 (file)
@@ -252,6 +252,9 @@ ps_pscommand_SOURCES =  \
        lib/signals.c
 
 
+# Note sure why this is needed but it breaks without it
+check: $(check_PROGRAMS)
+
 # lib/test_* binaries
 check_PROGRAMS = \
        lib/test_strutils \