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

index d54f8fe5f009802bbb4165713f59174bbf6e34f2..bba132eb2ef0433760370d975b21d948d177bbe8 100644 (file)
@@ -36,3 +36,5 @@ mem_nr
 mem_nr.c
 mem_r
 mem_r.c
+noansi_nr
+noansi_nr.c
index 85893176b925c186911143e14fc96ce733052416..e5321ec26dcca4a5030ded83419be414d99b3d8d 100644 (file)
@@ -42,8 +42,8 @@ check_PROGRAMS = \
        header_nr \
        header_r \
        mem_nr \
-       mem_r
-
+       mem_r \
+       noansi_nr
 
 alloc_extra_SOURCES = alloc_extra.l
 array_nr_SOURCES = array_nr.l
@@ -61,6 +61,7 @@ header_nr_SOURCES = header_nr_scanner.l header_nr_main.c
 header_r_SOURCES = header_r_scanner.l header_r_main.c
 mem_nr_SOURCES = mem_nr.l
 mem_r_SOURCES = mem_r.l
+noansi_nr_SOURCES = noansi_nr.l
 
 BUILT_SOURCES = \
        bison_nr_scanner.h \
@@ -95,7 +96,9 @@ basic_nr.txt \
        header_r_scanner.h \
        header_r.txt \
        mem_nr.txt \
-       mem_r.txt
+       mem_r.txt \
+       noansi_nr.txt
+
 
 # specify how to process .l files in order to test the flex built by make all
 
similarity index 97%
rename from tests/test-noansi-nr/scanner.l
rename to tests/noansi_nr.l
index 4afc8c2f687e84cb0f042a6df7efe776aba205fe..07f19cf13c9a20a0507ee9bef2a53daaae195f88 100644 (file)
@@ -35,7 +35,7 @@
 #include "config.h"
 %}
 
-%option prefix="test" outfile="scanner.c" 
+%option prefix="test" 
 %option nounput noyywrap noyylineno warn nodefault
 %option noansi-prototypes noansi-definitions
 
diff --git a/tests/test-noansi-nr/.gitignore b/tests/test-noansi-nr/.gitignore
deleted file mode 100644 (file)
index 1b47d0a..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-Makefile
-parser.c
-parser.h
-scanner.c
-test-noansi-nr
-OUTPUT
-Makefile.in
diff --git a/tests/test-noansi-nr/Makefile.am b/tests/test-noansi-nr/Makefile.am
deleted file mode 100644 (file)
index a2a327e..0000000
+++ /dev/null
@@ -1,48 +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
-
-EXTRA_DIST = scanner.l test.input
-CLEANFILES = scanner.c parser.c parser.h $(testname)$(EXEEXT) OUTPUT $(OBJS)
-OBJS = scanner.o # parser.o
-
-AM_CPPFLAGS = -I$(srcdir) -I$(top_srcdir) -I$(top_builddir)
-#LDFLAGS = $(top_srcdir)/libfl.a 
-#YFLAGS = --defines --output=parser.c
-
-testname = test-noansi-nr
-
-scanner.c: $(srcdir)/scanner.l
-       $(FLEX) $<
-
-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) $<