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

index c5f2f2040dd165cc02ab28d1c309f8f51cbf1118..788e1187dd9667b19c1a06c32dca831ac3bedf7b 100644 (file)
@@ -69,6 +69,8 @@ reject_ver.table
 reject_ver.table.c
 reject_ser.table
 reject_ser.table.c
+quotes
+quotes.c
 string_nr
 string_nr.c
 string_r
index 9f65c4ee47d8b7893848bd791a49433e10eb0820..5f608c50b0e78fc8ad78ee5a9fa7dcaf4d350420 100644 (file)
@@ -71,6 +71,7 @@ simple_tests = \
        posixly_correct \
        prefix_nr \
        prefix_r \
+       quotes \
        string_nr \
 string_r \
        top \
@@ -112,6 +113,7 @@ posix_SOURCES = posix.l
 posixly_correct_SOURCES = posixly_correct.l
 prefix_nr_SOURCES = prefix_nr.l
 prefix_r_SOURCES = prefix_r.l
+quotes_SOURCES = quotes.l
 reject_nr_reject_SOURCES = reject.l4
 reject_r_reject_SOURCES = reject.l4
 reject_ver_table_SOURCES = reject.l4
@@ -185,6 +187,7 @@ basic_nr.txt \
        reject_r.reject.c \
        reject_ver.table.c \
        reject_ser.table.c \
+       quotes.txt \
        top.h \
        top.txt \
        yyextra.txt
@@ -199,7 +202,7 @@ FLEX = $(top_builddir)/src/flex
 .ll.cc:
        $(FLEX) -+ -o $@ $<
 
-bison_nr_main($objext): bison_nr_parser.h bison_nr_scanner.h
+bison_nr_main.($OBJEXT): bison_nr_parser.h bison_nr_scanner.h
 bison_nr_scanner.h: bison_nr_scanner.c
 
 bison_yylloc_main$(objext): bison_yylloc_parser.h bison_yylloc_scanner.h
similarity index 98%
rename from tests/test-quotes/scanner.l
rename to tests/quotes.l
index 0c7c4824deb52318dccb0181a86dc8a03b6d3ca1..30fe147ce38734a17bf5c5c20acbdc5bf6bb9083 100644 (file)
@@ -55,7 +55,7 @@ static int foo (int i){
 }
 %}
 
-%option 8bit outfile="scanner.c" prefix="test"
+%option 8bit prefix="test"
 %option nounput nomain noyywrap 
 %option warn
 
diff --git a/tests/test-quotes/.gitignore b/tests/test-quotes/.gitignore
deleted file mode 100644 (file)
index f235582..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-Makefile
-Makefile.in
-parser.c
-parser.h
-scanner.c
-TEMPLATE
-OUTPUT
-.deps
-test-quotes
-l.out
-c.out
diff --git a/tests/test-quotes/Makefile.am b/tests/test-quotes/Makefile.am
deleted file mode 100644 (file)
index 70676ef..0000000
+++ /dev/null
@@ -1,47 +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 = l.out c.out  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-quotes
-
-scanner.c: $(srcdir)/scanner.l
-       $(FLEX) $(LFLAGS) $<
-
-$(testname)$(EXEEXT): $(OBJS)
-       $(CC) $(CFLAGS) -o $@ $(LDFLAGS) $(OBJS) $(LOADLIBES)
-
-test: $(testname)$(EXEEXT)
-       grep TEST_XXX < $(srcdir)/scanner.l | sed 's/^ *//' > l.out
-       grep TEST_XXX < scanner.c | sed 's/^ *//' > c.out
-       cmp -s l.out c.out
-       ./$(testname)$(EXEEXT) < $(srcdir)/test.input
-
-.c.o:
-       $(CC) -c -o $@ $(AM_CPPFLAGS) $(CPPFLAGS) $(CFLAGS) $<