diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2016-02-16 03:02:01 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2016-02-16 03:19:32 +0100 |
commit | 107536fe38773ebe408cee5e01add97989797370 (patch) | |
tree | c71f895115dca3289f2be135bdf4e7b513dac994 /tests/atlocal.in | |
parent | 845738eb874cc2ca80b45a4fe873b25207179197 (diff) | |
download | sciteco-107536fe38773ebe408cee5e01add97989797370.tar.gz |
finally added Autotest suite
* Autotest ships with Autoconf, so it's available already
and relatively easy to integrate into an Autotools package.
* This is attached to `make check` using some Automake magic.
* The test suite will only call the built SciTECO for the time being.
But using tests/Makefile.am, custom programs could be easily
built.
* Since it uses the target sciteco, it cannot work in cross-compile
environments.
* The test suite tests/testsuite.at should be used for regression
tests at least: Whenever there is a bug, a test case should be
added to testsuite.at.
Later this might be split up into multiple includes for regressions
other tests.
Diffstat (limited to 'tests/atlocal.in')
-rw-r--r-- | tests/atlocal.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/atlocal.in b/tests/atlocal.in new file mode 100644 index 0000000..a4f30cc --- /dev/null +++ b/tests/atlocal.in @@ -0,0 +1,9 @@ +# `tests` is after `src`, so the target SciTECO is already +# built. +# Using the $BOOTSTRAP_SCITECO wouldn't make sense +# anyway as we don't want to test some preinstalled SciTECO. +SCITECO=@abs_top_builddir@/src/sciteco + +# Make sure that the standard library from the source package +# is used. +SCITECOPATH=@abs_top_srcdir@/lib |