*** empty log message ***

This commit is contained in:
hyung-hwan 2006-12-04 06:28:56 +00:00
parent a38e6e5ba8
commit 9ada8cc5af
9 changed files with 10 additions and 1 deletions

View File

@ -1,5 +1,5 @@
/* /*
* $Id: run.c,v 1.290 2006-12-04 06:04:07 bacon Exp $ * $Id: run.c,v 1.291 2006-12-04 06:28:56 bacon Exp $
*/ */
#include <ase/awk/awk_i.h> #include <ase/awk/awk_i.h>
@ -4067,6 +4067,7 @@ static ase_awk_val_t* __eval_binop_nm (
ase_awk_refupval (run, rv); ase_awk_refupval (run, rv);
wprintf (L"STRING: [%S]\n", ((ase_awk_val_str_t*)lv)->buf);
res = __eval_binop_match0 (run, lv, rv, 0); res = __eval_binop_match0 (run, lv, rv, 0);
ase_awk_refdownval (run, lv); ase_awk_refdownval (run, lv);

1
ase/test/awk/cou-004.awk Normal file
View File

@ -0,0 +1 @@
$0 >= "M"

1
ase/test/awk/cou-005.awk Normal file
View File

@ -0,0 +1 @@
$1 < $4

1
ase/test/awk/cou-006.awk Normal file
View File

@ -0,0 +1 @@
$2 < $3

1
ase/test/awk/cou-007.awk Normal file
View File

@ -0,0 +1 @@
/Asia/

1
ase/test/awk/cou-008.awk Normal file
View File

@ -0,0 +1 @@
$4 ~ /Asia/

1
ase/test/awk/cou-009.awk Normal file
View File

@ -0,0 +1 @@
$4 !~ /Asia/

1
ase/test/awk/cou-010.awk Normal file
View File

@ -0,0 +1 @@
$0 ~ /Asia/

1
ase/test/awk/cou-011.awk Normal file
View File

@ -0,0 +1 @@
$2 !~ /^[0-9]+$]/