diff options
author | John Millaway <john43@users.sourceforge.net> | 2002-08-10 17:17:44 +0000 |
---|---|---|
committer | John Millaway <john43@users.sourceforge.net> | 2002-08-10 17:17:44 +0000 |
commit | ca0957eab41e94192bc7898b26a06798f0cab302 (patch) | |
tree | e78f1db2d93a657ddef9c05147cec1b0a1ea3310 /tests | |
parent | 5af83504c73a631bf76b9b9661cd872e38155f91 (diff) | |
download | flex-git-ca0957eab41e94192bc7898b26a06798f0cab302.tar.gz |
Added options to test-table-opts
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-table-opts/.cvsignore | 3 | ||||
-rw-r--r-- | tests/test-table-opts/Makefile.am | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/tests/test-table-opts/.cvsignore b/tests/test-table-opts/.cvsignore index 7a74a19..91ff750 100644 --- a/tests/test-table-opts/.cvsignore +++ b/tests/test-table-opts/.cvsignore @@ -2,8 +2,7 @@ Makefile Makefile.in parser.c parser.h -scanner.c TEMPLATE OUTPUT .deps -test-table-opts +test-opt-* diff --git a/tests/test-table-opts/Makefile.am b/tests/test-table-opts/Makefile.am index 6441c66..63ab9fe 100644 --- a/tests/test-table-opts/Makefile.am +++ b/tests/test-table-opts/Makefile.am @@ -28,7 +28,7 @@ BISON = @BISON@ FLEX = $(top_builddir)/flex testname := test-table-opts -allopts := -Ca -Ce -Cf -CF -Cm -Cem +allopts := -Ca -Ce -Cf -CF -Cm -Cem -Cae -Caf -CaF -Cam -Caem alltests := $(foreach opt,$(allopts),test-opt-r$(opt) test-opt-nr$(opt)) alltestexe := $(addsuffix $(EXEEXT),$(alltests)) alltestsrc := $(addsuffix .c,$(alltests)) @@ -52,7 +52,7 @@ test-opt%$(EXEEXT): test-opt%.o test: $(alltestexe) for t in $(alltestexe) ; do \ - ./$$t < $(srcdir)/test.input ; \ + ./$$t < $(srcdir)/test.input || exit 1 ; \ done .c.o: |