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

index dd220f76e45e63e728a6fcd8924221ea54fc304d..a59cd3e3c1b9cfeaac7c8d3f4ebce0643197b4a2 100644 (file)
@@ -20,3 +20,5 @@ bison_yylloc_scanner.[ch]
 bison_yylval
 bison_yylval_parser.[ch]
 bison_yylval_scanner.[ch]
+ccl
+ccl.c
index 5f80be7bb3665a7cd0e526aa6af7e9e00071144f..7aaca1a80f4251867e6ff86a376a4669ff5ec799 100644 (file)
@@ -34,7 +34,8 @@ check_PROGRAMS = \
        basic_r \
        bison_nr \
        bison_yylloc \
-       bison_yylval
+       bison_yylval \
+       ccl
 
 alloc_extra_SOURCES = alloc_extra.l
 array_nr_SOURCES = array_nr.l
@@ -44,6 +45,7 @@ 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
 
 BUILT_SOURCES = \
        bison_nr_scanner.h \
@@ -66,7 +68,8 @@ basic_nr.txt \
        bison_yylloc_scanner.h \
        bison_yylloc.txt \
        bison_yylval_scanner.h \
-       bison_yylval.txt
+       bison_yylval.txt \
+       ccl.txt
 
 # specify how to process .l files in order to test the flex built by make all
 
similarity index 98%
rename from tests/test-ccl/scanner.l
rename to tests/ccl.l
index 330278a7234ff644cc25d48c755cecffd7dadef5..fa858f9949343f9f56fa381c9509ec10c7c994e9 100644 (file)
@@ -32,7 +32,7 @@
 #define a_ok()      do{printf("OK: flex line %d. input line %d.\n", __LINE__, yylineno); return 1;}while(0)
 %}
 
-%option 8bit outfile="scanner.c" prefix="test"
+%option 8bit prefix="test"
 %option nounput nomain noyywrap
 %option warn
 
similarity index 100%
rename from tests/test-ccl/test.input
rename to tests/ccl.txt
diff --git a/tests/test-ccl/.gitignore b/tests/test-ccl/.gitignore
deleted file mode 100644 (file)
index 2f65350..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-Makefile
-Makefile.in
-parser.c
-parser.h
-scanner.c
-TEMPLATE
-OUTPUT
-.deps
-test-ccl
diff --git a/tests/test-ccl/Makefile.am b/tests/test-ccl/Makefile.am
deleted file mode 100644 (file)
index 0a92bb2..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
-
-builddir = @builddir@
-
-EXTRA_DIST = scanner.l test.input
-CLEANFILES = 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-ccl
-
-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) $<