-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed Mawk re1 test because mawk currently doesn't handle \w word boundaries
- Loading branch information
James Parkinson
committed
Jul 18, 2021
1 parent
09c53ce
commit dde3f5a
Showing
3 changed files
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,7 +69,7 @@ array array2 array3 array4 array4b array4c array4d io:: | |
@$(SEQCMD) $(TIME) -f "$@\tTCL \t%e sec" $(TCL) $@.tcl 2>>$@tres.out | ||
|
||
|
||
cast expr function recurse split re1 re2 re2a:: | ||
cast expr function recurse split re2 re2a:: | ||
@echo $@ | ||
@$(AWKA) -f $@.awk >x.c | ||
@$(CC) x.c $(CFLAGS) | ||
|
@@ -79,6 +79,16 @@ cast expr function recurse split re1 re2 re2a:: | |
@$(SEQCMD) $(TIME) -f "$@\tPERL\t%e sec" $(PERL) $@.pl 2>>$@plres.out | ||
@$(SEQCMD) $(TIME) -f "$@\tPYTHON\t%e sec" $(PYTHON) $@.py 2>>$@pyres.out | ||
|
||
re1:: | ||
@echo $@ | ||
@$(AWKA) -f $@.awk >x.c | ||
@$(CC) x.c $(CFLAGS) | ||
@$(SEQCMD) $(TIME) -f "$@\tAWKA\t%e sec" ./a.out 2>>$@ares.out | ||
@# $(SEQCMD) $(TIME) -f "$@\tMAWK\t%e sec" $(MAWK) -f [email protected] 2>>[email protected] | ||
@$(SEQCMD) $(TIME) -f "$@\tGAWK\t%e sec" $(GAWK) -f $@.awk 2>>$@gres.out | ||
@$(SEQCMD) $(TIME) -f "$@\tPERL\t%e sec" $(PERL) $@.pl 2>>$@plres.out | ||
@$(SEQCMD) $(TIME) -f "$@\tPYTHON\t%e sec" $(PYTHON) $@.py 2>>$@pyres.out | ||
|
||
loop:: | ||
@echo $@ | ||
@$(AWKA) -f $@.awk >x.c | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters