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

index a59cd3e3c1b9cfeaac7c8d3f4ebce0643197b4a2..9fa9f2923b0acc36e6889eb60e8ece19f46182a0 100644 (file)
@@ -22,3 +22,5 @@ bison_yylval_parser.[ch]
 bison_yylval_scanner.[ch]
 ccl
 ccl.c
+debug_nr
+debug_nr.c
index 7aaca1a80f4251867e6ff86a376a4669ff5ec799..053f115f2ff4d0581f93d2cd07cccb2d9e76dbf3 100644 (file)
@@ -35,7 +35,8 @@ check_PROGRAMS = \
        bison_nr \
        bison_yylloc \
        bison_yylval \
-       ccl
+       ccl \
+       debug_nr
 
 alloc_extra_SOURCES = alloc_extra.l
 array_nr_SOURCES = array_nr.l
@@ -45,7 +46,8 @@ basic_r_SOURCES = basic_r.l
 bison_nr_SOURCES = bison_nr_scanner.l bison_nr_parser.y bison_nr_main.c
 bison_yylloc_SOURCES = bison_yylloc_scanner.l bison_yylloc_parser.y bison_yylloc_main.c
 bison_yylval_SOURCES = bison_yylval_scanner.l bison_yylval_parser.y bison_yylval_main.c
-ccl_SOURCES = ccl.y
+ccl_SOURCES = ccl.l
+debug_nr_SOURCES = debug_nr.l
 
 BUILT_SOURCES = \
        bison_nr_scanner.h \
@@ -69,7 +71,8 @@ basic_nr.txt \
        bison_yylloc.txt \
        bison_yylval_scanner.h \
        bison_yylval.txt \
-       ccl.txt
+       ccl.txt \
+       debug_nr.txt
 
 # specify how to process .l files in order to test the flex built by make all
 
similarity index 96%
rename from tests/test-debug-nr/scanner.l
rename to tests/debug_nr.l
index 13d11d6ff53dd61a12cb6213a741f0eb38adfbc9..231a1813ec9bf5e14cfec2f6cf345acfe68499a3 100644 (file)
@@ -29,7 +29,7 @@
 
 %}
 
-%option 8bit outfile="scanner.c" prefix="test"
+%option 8bit prefix="test"
 %option nounput nomain noyywrap 
 %option warn debug
 
diff --git a/tests/test-debug-nr/.gitignore b/tests/test-debug-nr/.gitignore
deleted file mode 100644 (file)
index 689066f..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-Makefile
-Makefile.in
-parser.c
-parser.h
-scanner.c
-TEMPLATE
-OUTPUT
-.deps
-test-debug-nr
diff --git a/tests/test-debug-nr/Makefile.am b/tests/test-debug-nr/Makefile.am
deleted file mode 100644 (file)
index 8e4ae82..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-debug-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) $<