fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-hlr/+/27783 )
Change subject: tests: use 'check_PROGRAMS' instead of 'noinst_PROGRAMS' ......................................................................
tests: use 'check_PROGRAMS' instead of 'noinst_PROGRAMS'
When using 'check_PROGRAMS', autoconf/automake generates smarter Makefiles, so that the test programs are not being compiled during the normal 'make all', but only during 'make check'.
Change-Id: I70cf75b3cb6ae59c92248cc529546750fb0da07b --- M tests/auc/Makefile.am M tests/gsup/Makefile.am 2 files changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-hlr refs/changes/83/27783/1
diff --git a/tests/auc/Makefile.am b/tests/auc/Makefile.am index 9b65d71..95f98d0 100644 --- a/tests/auc/Makefile.am +++ b/tests/auc/Makefile.am @@ -25,7 +25,7 @@
check_PROGRAMS = auc_ts_55_205_test_sets
-noinst_PROGRAMS = auc_test +check_PROGRAMS = auc_test
auc_test_SOURCES = \ auc_test.c \ diff --git a/tests/gsup/Makefile.am b/tests/gsup/Makefile.am index 5dbb180..9a10597 100644 --- a/tests/gsup/Makefile.am +++ b/tests/gsup/Makefile.am @@ -17,7 +17,7 @@ gsup_test.err \ $(NULL)
-noinst_PROGRAMS = \ +check_PROGRAMS = \ gsup_test \ $(NULL)