From 6d6f2d5605ddb44405bbdf0481f4259c9c5f7423 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 8 Nov 2023 18:30:03 -0500 Subject: [PATCH] Makefile.am: run the new test suite with "make check" --- Makefile.am | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile.am b/Makefile.am index 19181ae..3718647 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,6 +2,9 @@ # to (say) /usr/share/charm-bypass/index.html dist_pkgdata_DATA = index.html +# A single POSIX shell script is our "test suite." +TESTS = run-tests.sh + # Based on e.g. # # https://www.gnu.org/software/automake/manual/html_node/Scripts.html @@ -9,6 +12,7 @@ dist_pkgdata_DATA = index.html # this looks like the best way to include "sources" for things that # aren't true programs/libraries. EXTRA_DIST = \ + $(TESTS) \ CharmBypass-Regular.sfd \ CharmBypass-Bold.sfd \ favicon.svg \ @@ -106,3 +110,4 @@ CLEANFILES = \ $(index_html_BUILTDEPS) \ favicon.min.svg \ tableau.min.svg + -- 2.43.2