diff options
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/awk.tests | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testsuite/awk.tests b/testsuite/awk.tests index 6e35d33..873cc36 100755 --- a/testsuite/awk.tests +++ b/testsuite/awk.tests @@ -45,6 +45,16 @@ testing "awk handles empty function f(arg){}" \ "" "" prg=' +function empty_fun(){} +END {empty_fun() + print "Ok" +}' +testing "awk handles empty function f(){}" \ + "awk '$prg'" \ + "Ok\n" \ + "" "" + +prg=' function outer_fun() { return 1 } |