aboutsummaryrefslogtreecommitdiffstats
path: root/test/strtod.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/strtod.awk')
-rw-r--r--test/strtod.awk6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/strtod.awk b/test/strtod.awk
index 27df8a4f..3326478e 100644
--- a/test/strtod.awk
+++ b/test/strtod.awk
@@ -1 +1,5 @@
-{ x = "0x" $1 ; print x, x + 0 }
+{
+ x = "0x" $1 ; print x, x + 0
+ for (i=1; i<=NF; i++)
+ if ($i) print $i, "is not zero"
+}