]> granicus.if.org Git - flex/commitdiff
refactor rescan_r test for new test suite layout
authorWill Estes <westes575@gmail.com>
Tue, 17 Jun 2014 00:07:56 +0000 (20:07 -0400)
committerWill Estes <westes575@gmail.com>
Wed, 12 Nov 2014 10:14:28 +0000 (05:14 -0500)
tests/.gitignore
tests/Makefile.am
tests/rescan_nr.direct.l [moved from tests/rescan_nr.l with 100% similarity]
tests/rescan_nr.direct.txt [moved from tests/rescan_nr.txt with 100% similarity]
tests/rescan_r.direct.l [moved from tests/test-rescan-r/scanner.l with 98% similarity]
tests/rescan_r.direct.txt [moved from tests/test-rescan-r/test.input with 100% similarity]
tests/test-rescan-r/.gitignore [deleted file]
tests/test-rescan-r/Makefile.am [deleted file]
tests/testwrapper.sh

index bd38e114d5bec2f2bdf159886efcbabcb5e99613..99e307abe3bed36538b6e8e83995ddc11e2580cc 100644 (file)
@@ -69,8 +69,10 @@ reject_ver.table
 reject_ver.table.c
 reject_ser.table
 reject_ser.table.c
-rescan_nr
-rescan_nr.c
+rescan_nr.direct
+rescan_nr.direct.c
+rescan_r.direct
+rescan_r.direct.c
 quotes
 quotes.c
 string_nr
index 0f170f0a59a349112e0a77f3185eb78b575377dc..eedc939ee5fd45226e1edcf266a138a3f19e29b7 100644 (file)
@@ -81,15 +81,14 @@ string_r \
        yyextra
 
 reject_tests = \
-       reject_nr.reject \
-       reject_r.reject
+       reject_nr.reject
 
 TABLE_TESTS = \
-       reject_ver.table \
-       reject_ser.table
+       reject_ver.table
 
 DIRECT_TESTS = \
-       rescan_nr
+       rescan_nr.direct \
+       rescan_r.direct
 
 alloc_extra_SOURCES = alloc_extra.l
 array_nr_SOURCES = array_nr.l
@@ -124,7 +123,8 @@ reject_nr_reject_SOURCES = reject.l4
 reject_r_reject_SOURCES = reject.l4
 reject_ver_table_SOURCES = reject.l4
 reject_ser_table_SOURCES = reject.l4
-rescan_nr_SOURCES = rescan_nr.l
+rescan_nr_direct_SOURCES = rescan_nr.direct.l
+rescan_r_direct_SOURCES = rescan_r.direct.l
 string_nr_SOURCES = string_nr.l
 string_r_SOURCES = string_r.l
 top_SOURCES = top.l top_main.c
@@ -148,7 +148,7 @@ BUILT_SOURCES = \
        reject_nr.reject.c \
        reject_r.reject.c \
        reject_ver.table.c \
-reject_ser.table \
+       reject_ser.table.c \
        top.h
 
 EXTRA_DIST = \
@@ -194,7 +194,8 @@ basic_nr.txt \
        reject_r.reject.c \
        reject_ver.table.c \
        reject_ser.table.c \
-       rescan_nr.txt \
+       rescan_nr.direct.txt \
+       rescan_r.direct.txt \
        quotes.txt \
        top.h \
        top.txt \
similarity index 100%
rename from tests/rescan_nr.l
rename to tests/rescan_nr.direct.l
similarity index 98%
rename from tests/test-rescan-r/scanner.l
rename to tests/rescan_r.direct.l
index 3357ce8786f7904a1bae8351e5e5ac7faa4c26b3..a6073dd3b002b762ba2327197ced010e971b5baf 100644 (file)
@@ -27,7 +27,7 @@
 #include <stdlib.h>
 %}
 
-%option 8bit outfile="scanner.c" prefix="test"
+%option 8bit prefix="test"
 %option nounput nomain noyywrap reentrant
 %option warn stack never-interactive
 %x STATE_1
diff --git a/tests/test-rescan-r/.gitignore b/tests/test-rescan-r/.gitignore
deleted file mode 100644 (file)
index bf052c2..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-Makefile
-Makefile.in
-parser.c
-parser.h
-scanner.c
-TEMPLATE
-OUTPUT
-.deps
-test-rescan-r
diff --git a/tests/test-rescan-r/Makefile.am b/tests/test-rescan-r/Makefile.am
deleted file mode 100644 (file)
index b24a152..0000000
+++ /dev/null
@@ -1,47 +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 # parser.o
-
-AM_CPPFLAGS = -I$(srcdir) -I$(builddir) -I$(top_srcdir) -I$(top_builddir)
-#LDFLAGS = $(top_srcdir)/libfl.a 
-#LFLAGS = --header="scanner.h"
-#YFLAGS = --defines --output=parser.c
-
-testname = test-rescan-r
-
-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) $<
index 24a209f37d110a7bffd94df0cdca0f5ea77cd4e9..97f2a88c573e0cb4f5ec99c89810765c63554274 100755 (executable)
@@ -6,22 +6,27 @@
 
 INPUT_DIRECTORY=""
 INPUT_NAME=""
+USE_REDIRECT=0
 
 while getopts :d:i:rt OPTION ; do
     case $OPTION in
         d) INPUT_DIRECTORY=$OPTARG ;;
-        i) INPUTNAME="$OPTARG" ;;
+        i) INPUT_NAME="$OPTARG" ;;
         r) USE_REDIRECT=1 ;;
         t) USE_TABLES=1 ;;
     esac
     done
 
-TESTNAME="${!$OPTIND}"
+TESTNAME="${!OPTIND}"
 
-INPUTNAME=${INPUT_NAME:-`basename $TESTNAME`.txt}
+INPUT_NAME=${INPUT_NAME:-`basename $TESTNAME`.txt}
 
-if [ -f $INPUT_DIRECTORY/$INPUT_NAME ] ; then
-    $TESTNAME ${USE_TABLES:+${INPUT_DIRECTORY}${TESTNAME}} ${USE_REDIRECT:+'<'} $INPUT_DIRECTORY/$INPUT_NAME
+if [ -f ${INPUT_DIRECTORY}/${INPUT_NAME} ] ; then
+    if [ $USE_REDIRECT == 1 ] ; then
+        $TESTNAME ${USE_TABLES:+${INPUT_DIRECTORY}/${TESTNAME}.tables} < $INPUT_DIRECTORY/$INPUT_NAME
+    else
+        $TESTNAME ${USE_TABLES:+${INPUT_DIRECTORY}/${TESTNAME}.tables} $INPUT_DIRECTORY/$INPUT_NAME
+    fi
 else
     $TESTNAME
 fi