diff options
author | Mike Gerwitz <mike.gerwitz@rtspecialty.com> | 2018-10-02 13:52:32 -0400 |
---|---|---|
committer | Mike Gerwitz <mike.gerwitz@rtspecialty.com> | 2018-10-02 13:53:06 -0400 |
commit | be59eb74a6573f036a766de4c9a9d625abf12e26 (patch) | |
tree | 3e2be060f52cf3f4f68046b9b1b348fcb01f5e86 /Makefile.am | |
parent | c675207696ce8086d460ecbb2388caa76866bdbc (diff) | |
download | tame-be59eb74a6573f036a766de4c9a9d625abf12e26.tar.gz tame-be59eb74a6573f036a766de4c9a9d625abf12e26.tar.bz2 tame-be59eb74a6573f036a766de4c9a9d625abf12e26.zip |
Makefile.am: Add build-aux tests to `check' target
* Makefile.am (check): Add build-aux tests to target.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 3546e5c..01ac8a8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,6 +20,7 @@ SUBDIRS = doc progtest path_src = src path_test = test +path_aux = build-aux # all source files will be run through hoxsl; see `applies' target apply_src := $(shell find "$(path_src)" "$(path_test)" \ @@ -49,6 +50,7 @@ applies: $(apply_dest) test: check check: | applies + for test in $(path_aux)/test/test-*; do ./$$test || exit 1; done $(path_test)/runner progtest: FORCE |