From be59eb74a6573f036a766de4c9a9d625abf12e26 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Tue, 2 Oct 2018 13:52:32 -0400 Subject: [PATCH] Makefile.am: Add build-aux tests to `check' target * Makefile.am (check): Add build-aux tests to target. --- Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.am b/Makefile.am index 3546e5c8..01ac8a81 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