From 60764a52849248caf59ce75377a2b38503f773a7 Mon Sep 17 00:00:00 2001 From: Vivien Kraus Date: Wed, 1 Jan 2020 00:00:00 +0100 Subject: Set up tests --- Makefile.am | 1 + tests/Makefile.am | 9 +++++++++ tests/load-library.scm | 1 + 3 files changed, 11 insertions(+) create mode 100644 tests/Makefile.am create mode 100644 tests/load-library.scm diff --git a/Makefile.am b/Makefile.am index fa46a72..207bba2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -15,6 +15,7 @@ INDENTED = include src/Makefile.am include doc/Makefile.am +include tests/Makefile.am EXTRA_DIST += $(top_srcdir)/.version BUILT_SOURCES += $(top_srcdir)/.version diff --git a/tests/Makefile.am b/tests/Makefile.am new file mode 100644 index 0000000..1e4b2df --- /dev/null +++ b/tests/Makefile.am @@ -0,0 +1,9 @@ +TESTS = %reldir%/load-library.scm + +EXTRA_DIST += $(TESTS) + +TEST_EXTENSIONS = .scm + +AM_TESTS_ENVIRONMENT = $(top_builddir)/pre-inst-env +SCM_LOG_COMPILER = $(GUILE) +AM_SCM_LOG_FLAGS = --no-auto-compile -s diff --git a/tests/load-library.scm b/tests/load-library.scm new file mode 100644 index 0000000..196e273 --- /dev/null +++ b/tests/load-library.scm @@ -0,0 +1 @@ +(use-modules (webid-oidc)) -- cgit v1.2.3