*** empty log message ***

This commit is contained in:
2007-02-08 04:03:33 +00:00
parent f39051bd86
commit 2d42e7ddf1
4 changed files with 7 additions and 43 deletions

View File

@ -1,17 +0,0 @@
CC = cc
CFLAGS = -Xc -a ansi -O2 -I../../..
LDFLAGS = -L../../bas -L../../awk
LIBS = -lxpawk -lm
all: aseawk
aseawk: awk.o
$(CC) -o awk awk.o $(LDFLAGS) $(LIBS)
clean:
rm -f *.o aseawk
.SUFFIXES: .c .o
.c.o:
$(CC) -c $(CFLAGS) $<

View File

@ -6,7 +6,7 @@ run_script_for_init()
data="$2"
output=`echo $script | sed 's/\.awk$/.out/g'`
./awk -d -f "$script" "$data" > "$output"
./aseawk -d -f "$script" "$data" > "$output"
}
run_init()
@ -29,7 +29,7 @@ run_script_for_test()
output=`echo $script | sed 's/\.awk$/.out/g'`
echo ">> RUNNING $script"
./awk -d -f "$script" "$data" > "$output.$pid"
./aseawk -d -f "$script" "$data" > "$output.$pid"
#diff -y "$output" "$output.$pid"
diff "$output" "$output.$pid"
@ -90,7 +90,7 @@ run_test()
# main #
#--------#
if [ ! -x ./awk ]
if [ ! -x ./aseawk ]
then
echo "Error: cannot locate a relevant awk interpreter"
exit 1;