]> granicus.if.org Git - flex/commitdiff
refactor extended test for new test suite layout
authorWill Estes <westes575@gmail.com>
Wed, 4 Jun 2014 20:44:30 +0000 (16:44 -0400)
committerWill Estes <westes575@gmail.com>
Wed, 12 Nov 2014 10:14:26 +0000 (05:14 -0500)
tests/.gitignore
tests/Makefile.am
tests/extended.l [moved from tests/test-extended/scanner.l with 97% similarity]
tests/extended.txt [moved from tests/test-extended/test.input with 100% similarity]
tests/test-extended/.gitignore [deleted file]
tests/test-extended/Makefile.am [deleted file]

index fad80d45bd86507c6a19763f33bc1e9ae44761a2..4be8a48dcbeedb756a362d302d0cecfef31b74d6 100644 (file)
@@ -26,3 +26,5 @@ debug_nr
 debug_nr.c
 debug_r
 debug_r.c
+extended
+extended.c
index 85b3e66c212e4ca7265a52a09d7117b5f808f84a..e41b5f21621ff5d76ccd8668b38aae9f0ad3834c 100644 (file)
@@ -37,7 +37,8 @@ check_PROGRAMS = \
        bison_yylval \
        ccl \
        debug_nr \
-       debug_r
+       debug_r \
+       extended
 
 alloc_extra_SOURCES = alloc_extra.l
 array_nr_SOURCES = array_nr.l
@@ -50,6 +51,7 @@ bison_yylval_SOURCES = bison_yylval_scanner.l bison_yylval_parser.y bison_yylval
 ccl_SOURCES = ccl.l
 debug_nr_SOURCES = debug_nr.l
 debug_r_SOURCES = debug_r.l
+extended_SOURCES = extended.l
 
 BUILT_SOURCES = \
        bison_nr_scanner.h \
@@ -75,7 +77,8 @@ basic_nr.txt \
        bison_yylval.txt \
        ccl.txt \
        debug_nr.txt \
-       debug_r.txt
+       debug_r.txt \
+       extended.txt
 
 # specify how to process .l files in order to test the flex built by make all
 
similarity index 97%
rename from tests/test-extended/scanner.l
rename to tests/extended.l
index 222c7dd596a25ac7f4aa946d60df3e620bd21b62..ec3d504f896b37f0774613abb694b59d8cf5e882 100644 (file)
@@ -30,7 +30,7 @@
 
 %}
 
-%option 8bit outfile="scanner.c" prefix="test"
+%option 8bit prefix="test"
 %option nounput nomain noyywrap
 %option warn
 
diff --git a/tests/test-extended/.gitignore b/tests/test-extended/.gitignore
deleted file mode 100644 (file)
index 325d9be..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-Makefile
-Makefile.in
-parser.c
-parser.h
-scanner.c
-TEMPLATE
-OUTPUT
-.deps
-test-extended
diff --git a/tests/test-extended/Makefile.am b/tests/test-extended/Makefile.am
deleted file mode 100644 (file)
index 190e95e..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-# This file is part of flex.
-
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-
-# Neither the name of the University nor the names of its contributors
-# may be used to endorse or promote products derived from this software
-# without specific prior written permission.
-
-# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
-# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE.
-
-FLEX = $(top_builddir)/flex
-
-builddir = @builddir@
-
-EXTRA_DIST = scanner.l test.input
-CLEANFILES = scanner.c scanner.h $(testname)$(EXEEXT) OUTPUT $(OBJS)
-OBJS = scanner.o
-
-AM_CPPFLAGS = -I$(srcdir) -I$(builddir) -I$(top_srcdir) -I$(top_builddir)
-
-testname = test-extended
-
-scanner.c: $(srcdir)/scanner.l
-       $(FLEX) $(LFLAGS) $<
-
-$(testname)$(EXEEXT): $(OBJS)
-       $(CC) $(CFLAGS) -o $@ $(LDFLAGS) $(OBJS) $(LOADLIBES)
-
-test: $(testname)$(EXEEXT)
-       ./$(testname)$(EXEEXT) < $(srcdir)/test.input | cmp -s $(srcdir)/test.input -
-
-.c.o:
-       $(CC) -c -o $@ $(AM_CPPFLAGS) $(CPPFLAGS) $(CFLAGS) $<