aboutsummaryrefslogtreecommitdiffstats
path: root/test/inftest.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/inftest.awk')
-rw-r--r--test/inftest.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/inftest.awk b/test/inftest.awk
index ec0eda13..f24bd7e3 100644
--- a/test/inftest.awk
+++ b/test/inftest.awk
@@ -1,5 +1,5 @@
BEGIN {
x = 100
- do { y = x ; x *= 1000; print x,y } while ( y != x )
+ do { y = x ; x *= 1000; print x,y } while ( y < x )
print "loop terminated"
}