aboutsummaryrefslogtreecommitdiffstats
path: root/extension/testext.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-01-07 22:32:43 +0200
committerArnold D. Robbins <arnold@skeeve.com>2015-01-07 22:32:43 +0200
commit128a3e884d9541ec5b96c02a19db38ac3c404bf1 (patch)
tree58d8abcaafcb4f1e036e29c24bcd87ea5c0685e8 /extension/testext.c
parentdaf063f72bb0b889149dea00794e8e889fdefa55 (diff)
parent2ff844d50c0ecbc4dc660cf7e8989476f56fb3e7 (diff)
downloadegawk-128a3e884d9541ec5b96c02a19db38ac3c404bf1.tar.gz
egawk-128a3e884d9541ec5b96c02a19db38ac3c404bf1.tar.bz2
egawk-128a3e884d9541ec5b96c02a19db38ac3c404bf1.zip
Merge branch 'master' into wasted-byte
Diffstat (limited to 'extension/testext.c')
-rw-r--r--extension/testext.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/extension/testext.c b/extension/testext.c
index 7462265b..4a1e7032 100644
--- a/extension/testext.c
+++ b/extension/testext.c
@@ -3,7 +3,7 @@
*/
/*
- * Copyright (C) 2012, 2013, 2014
+ * Copyright (C) 2012, 2013, 2014, 2015
* the Free Software Foundation, Inc.
*
* This file is part of GAWK, the GNU implementation of the
@@ -302,11 +302,11 @@ var_test(int nargs, awk_value_t *result)
goto out;
}
- /* look up PROCINFO - should fail */
+ /* look up PROCINFO - should succeed fail */
if (sym_lookup("PROCINFO", AWK_ARRAY, & value))
- printf("var_test: sym_lookup of PROCINFO failed - got a value!\n");
+ printf("var_test: sym_lookup of PROCINFO passed - got a value!\n");
else
- printf("var_test: sym_lookup of PROCINFO passed - did not get a value\n");
+ printf("var_test: sym_lookup of PROCINFO failed - did not get a value\n");
/* look up a reserved variable - should pass */
if (sym_lookup("ARGC", AWK_NUMBER, & value))