]> granicus.if.org Git - flex/commitdiff
refacter alloc-extra for new test suite layout
authorWill Estes <westes575@gmail.com>
Sun, 1 Jun 2014 15:27:18 +0000 (11:27 -0400)
committerWill Estes <westes575@gmail.com>
Wed, 12 Nov 2014 10:14:26 +0000 (05:14 -0500)
tests/.gitignore
tests/Makefile.am
tests/alloc-extra.l [moved from tests/test-alloc-extra/scanner.l with 98% similarity]
tests/alloc-extra.txt [moved from tests/test-alloc-extra/test.input with 100% similarity]
tests/test-alloc-extra/.gitignore [deleted file]
tests/test-alloc-extra/Makefile.am [deleted file]

index dd4833e0ae6d3d3fa3142d98c87c922608e46c0d..273d0d08d478bf25a6c7b9a4a482aeba4f4e0980 100644 (file)
@@ -1,5 +1,7 @@
 *.log
 *.o
+alloc-extra
+alloc-extra.c
 basic-nr
 basic-nr.c
 basic-r
index 0764df8797d601c2418944811992fc84be3bbc44..a0da4379d2d47d9b33f87a7b22c2f2a803dc323b 100644 (file)
@@ -27,13 +27,16 @@ TESTS = $(check_PROGRAMS)
 LOG_COMPILER = $(srcdir)/testwrapper.sh
 
 check_PROGRAMS = \
+       alloc-extra \
        basic-nr \
        basic-r
 
+alloc_extra_SOURCES = alloc-extra.l
 basic_nr_SOURCES = basic-nr.l
 basic_r_SOURCES = basic-r.l
 
 EXTRA_DIST = \
+       alloc-extra.txt \
 basic-nr.txt \
        basic-r.txt
 
similarity index 98%
rename from tests/test-alloc-extra/scanner.l
rename to tests/alloc-extra.l
index bedd43bcb56fbfdb6385437e30622989e9b5413b..14e18370c1a32d22b59846d0a9e6ede1c199787c 100644 (file)
@@ -48,7 +48,7 @@ void *yyalloc ( size_t size, yyscan_t  scanner );
 
 %}
 
-%option 8bit outfile="scanner.c" prefix="test"
+%option 8bit  prefix="test"
 %option nounput nomain noyywrap nodefault
 %option warn
 %option extra-type="struct Check *"
diff --git a/tests/test-alloc-extra/.gitignore b/tests/test-alloc-extra/.gitignore
deleted file mode 100644 (file)
index 371f7e7..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-.cvsignore
-Makefile
-Makefile.in
-scanner.c
-test-alloc-extra
-OUTPUT
diff --git a/tests/test-alloc-extra/Makefile.am b/tests/test-alloc-extra/Makefile.am
deleted file mode 100644 (file)
index 04509b6..0000000
+++ /dev/null
@@ -1,49 +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 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 
-#LFLAGS = --header="scanner.h"
-#YFLAGS = --defines --output=parser.c
-
-testname = test-alloc-extra
-
-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) $<