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

index f7dd131423a4bb13421edd329a1a53ac6fbda5b4..51ea57fdb7398b66a1816050df63fc7eb2f46f71 100644 (file)
@@ -32,3 +32,5 @@ header_nr
 header_nr_scanner.[ch]
 header_r
 header_r_scanner.[ch]
+mem_nr
+mem_nr.c
index 4595c881548bc030a7003572a490ad6952d91338..11653dc2ce867eeb10fd94b82f4290f82573bbf0 100644 (file)
@@ -40,7 +40,8 @@ check_PROGRAMS = \
        debug_r \
        extended \
        header_nr \
-       header_r
+       header_r \
+       mem_nr
 
 alloc_extra_SOURCES = alloc_extra.l
 array_nr_SOURCES = array_nr.l
@@ -56,6 +57,7 @@ debug_r_SOURCES = debug_r.l
 extended_SOURCES = extended.l
 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
 
 BUILT_SOURCES = \
        bison_nr_scanner.h \
@@ -88,7 +90,8 @@ basic_nr.txt \
        header_nr_scanner.h \
        header_nr.txt \
        header_r_scanner.h \
-       header_r.txt
+       header_r.txt \
+       mem_nr.txt
 
 # specify how to process .l files in order to test the flex built by make all
 
similarity index 98%
rename from tests/test-mem-nr/scanner.l
rename to tests/mem_nr.l
index d03996a7d2d622bf652263e3aca87431f339734b..9935763213113b3df3744b7cc482fee1ccf44f47 100644 (file)
@@ -39,7 +39,7 @@
 
 %}
 
-%option 8bit outfile="scanner.c" prefix="test"
+%option 8bit prefix="test"
 %option nounput nomain noyywrap
 %option warn stack nodefault
 %option noyyalloc noyyrealloc noyyfree
diff --git a/tests/test-mem-nr/.gitignore b/tests/test-mem-nr/.gitignore
deleted file mode 100644 (file)
index 7b73f56..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-Makefile
-Makefile.in
-parser.c
-parser.h
-scanner.c
-TEMPLATE
-OUTPUT
-.deps
-test-mem-nr
diff --git a/tests/test-mem-nr/Makefile.am b/tests/test-mem-nr/Makefile.am
deleted file mode 100644 (file)
index 4ad450d..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
-
-EXTRA_DIST = scanner.l test.input
-CLEANFILES = scanner.c scanner.h $(testname)$(EXEEXT) OUTPUT $(OBJS)
-OBJS = scanner.o
-
-AM_CPPFLAGS = -I$(srcdir) -I$(top_srcdir) -I$(top_builddir)
-#LDFLAGS = $(top_srcdir)/libfl.a 
-
-testname = test-mem-nr
-
-scanner.c: $(srcdir)/scanner.l
-       $(FLEX) $(LFLAGS) $<
-
-$(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) $<