diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-06-09 08:03:35 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-06-09 08:03:35 -0700 |
commit | 3e1962283c934b374829667f693244e5d23ee25b (patch) | |
tree | e7a09ae33928ce73e4d9332876b303cf4824ec2f /Makefile | |
parent | 7301f71181073b0567fa9aa285cff58b7653a67d (diff) | |
download | txr-3e1962283c934b374829667f693244e5d23ee25b.tar.gz txr-3e1962283c934b374829667f693244e5d23ee25b.tar.bz2 txr-3e1962283c934b374829667f693244e5d23ee25b.zip |
* Makefile: fix broken tests; numerous test cases output
bindings, and need the -B option. One test case does not
need the -l option which now implies -B.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -106,17 +106,24 @@ tests: $(TESTS) @echo "** tests passed!" tests/001/%: TXR_ARGS := $(top_srcdir)/tests/001/data +tests/001/query-1.ok: TXR_OPTS := -B +tests/001/query-2.ok: TXR_OPTS := -B +tests/001/query-4.ok: TXR_OPTS := -B tests/002/%: TXR_OPTS := -DTESTDIR=$(top_srcdir)/tests/002 tests/004/%: TXR_ARGS := -a 123 -b -c tests/005/%: TXR_ARGS := $(top_srcdir)/tests/005/data +tests/005/%: TXR_OPTS := -B tests/006/%: TXR_ARGS := $(top_srcdir)/tests/006/data +tests/006/%: TXR_OPTS := -B tests/008/tokenize.ok: TXR_ARGS := $(top_srcdir)/tests/008/data tests/008/configfile.ok: TXR_ARGS := $(top_srcdir)/tests/008/configfile tests/008/students.ok: TXR_ARGS := $(top_srcdir)/tests/008/students.xml tests/008/soundex.ok: TXR_ARGS := soundex sowndex lloyd lee jackson robert +tests/008/filtenv.ok: TXR_OPTS := -B tests/009/json.ok: TXR_ARGS = $(addprefix $(top_srcdir)/tests/009/,webapp.json pass1.json) -tests/009/json.ok: TXR_OPTS := -l tests/010/align-columns.ok: TXR_ARGS := $(top_srcdir)/tests/010/align-columns.dat +tests/010/block.ok: TXR_OPTS := -B +tests/010/reghash.ok: TXR_OPTS := -B tests/002/%: TXR_SCRIPT_ON_CMDLINE := y |