]> granicus.if.org Git - flex/commitdiff
refactor top test for new test suite layout
authorWill Estes <westes575@gmail.com>
Sat, 14 Jun 2014 15:46:44 +0000 (11:46 -0400)
committerWill Estes <westes575@gmail.com>
Wed, 12 Nov 2014 10:14:27 +0000 (05:14 -0500)
tests/.gitignore
tests/Makefile.am
tests/test-top/.gitignore [deleted file]
tests/test-top/Makefile.am [deleted file]
tests/top.l [moved from tests/test-top/scanner.l with 96% similarity]
tests/top.txt [moved from tests/test-top/test.input with 100% similarity]
tests/top_main.c [moved from tests/test-top/main.c with 98% similarity]

index 28be059ee8b8880446e4be5522304c64ebb74ef4..582238170e8a40a6d4034bd04daa470bd713478a 100644 (file)
@@ -50,3 +50,5 @@ string_nr
 string_nr.c
 string_r
 string_r.c
+top
+top.[ch]
index a749761c42945e81634e3f13a886ac750fe8127b..9863ecdf8948b1a6d346029a576776b463f171e0 100644 (file)
@@ -49,7 +49,8 @@ check_PROGRAMS = \
        prefix_nr \
        prefix_r \
        string_nr \
-string_r
+string_r \
+       top
 
 alloc_extra_SOURCES = alloc_extra.l
 array_nr_SOURCES = array_nr.l
@@ -74,6 +75,7 @@ prefix_nr_SOURCES = prefix_nr.l
 prefix_r_SOURCES = prefix_r.l
 string_nr_SOURCES = string_nr.l
 string_r_SOURCES = string_r.l
+top_SOURCES = top.l top_main.c
 
 BUILT_SOURCES = \
        bison_nr_scanner.h \
@@ -83,7 +85,8 @@ BUILT_SOURCES = \
        bison_yylval_parser.h \
        bison_yylval_scanner.h \
        header_nr_scanner.h \
-       header_r_scanner.h
+       header_r_scanner.h \
+       top.h
 
 EXTRA_DIST = \
        README \
@@ -112,7 +115,8 @@ basic_nr.txt \
        noansi_nr.txt \
        noansi_r.txt \
        prefix_nr.txt \
-       prefix_r.txt
+       prefix_r.txt \
+       top.txt
 
 # specify how to process .l files in order to test the flex built by make all
 
@@ -135,3 +139,6 @@ header_nr_scanner.h: header_nr_scanner.c
 
 header_r_main$(objext): header_r_scanner.h
 header_r_scanner.h: header_r_scanner.c
+
+top_main$(objext): top.h
+top.h: top.c
diff --git a/tests/test-top/.gitignore b/tests/test-top/.gitignore
deleted file mode 100644 (file)
index b095dd2..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-Makefile
-Makefile.in
-scanner.c
-scanner.h
-test-top
-OUTPUT
diff --git a/tests/test-top/Makefile.am b/tests/test-top/Makefile.am
deleted file mode 100644 (file)
index 681cadb..0000000
+++ /dev/null
@@ -1,54 +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 main.c
-CLEANFILES = scanner.c scanner.h $(testname)$(EXEEXT) OUTPUT $(OBJS)
-OBJS = scanner.o main.o
-
-AM_CPPFLAGS = -I$(srcdir) -I$(top_srcdir) -I$(top_builddir) -I$(builddir)
-#LDFLAGS = $(top_srcdir)/libfl.a 
-LFLAGS = --header="scanner.h"
-#YFLAGS = --defines --output=parser.c
-
-testname = test-top
-
-scanner.c: $(srcdir)/scanner.l
-       $(FLEX) $(LFLAGS) $<
-
-parser.c: $(srcdir)/parser.y
-       $(BISON) $(YFLAGS) $<
-
-$(testname)$(EXEEXT): $(OBJS)
-       $(CC) $(CFLAGS) -o $@ $(LDFLAGS) $(OBJS) $(LOADLIBES)
-
-test: $(testname)$(EXEEXT)
-       ./$(testname)$(EXEEXT) < $(srcdir)/test.input
-
-.c.o:
-       $(CC) -c -o $@ $(AM_CPPFLAGS) $(CPPFLAGS) $(CFLAGS) $<
-
-scanner.h: scanner.c
-main.o: scanner.h
similarity index 96%
rename from tests/test-top/scanner.l
rename to tests/top.l
index be329b0489113a1baba4d3d9bd5485606e97e71b..92a2c02458b4b2d91e08853d04aab78d4a3986fa 100644 (file)
@@ -40,7 +40,7 @@
 }
 
 %option reentrant
-%option 8bit outfile="scanner.c" prefix="test"
+%option 8bit header="top.h" prefix="test"
 %option nounput nomain noyywrap 
 %option warn
 
similarity index 100%
rename from tests/test-top/test.input
rename to tests/top.txt
similarity index 98%
rename from tests/test-top/main.c
rename to tests/top_main.c
index 353a63ee212b1738d9240be8b0ea874fca05b0e3..3ac436dbb615caf44e59ee3c7b058b0eec1c9aed 100644 (file)
@@ -21,7 +21,7 @@
  * PURPOSE.
  */
 
-#include "scanner.h"
+#include "top.h"
 
 /* The scanner itself is not important here.
  * We simply try to use all the functions that are exported in the