diff options
Diffstat (limited to 'testsuite/bc.tests')
-rwxr-xr-x | testsuite/bc.tests | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/testsuite/bc.tests b/testsuite/bc.tests index 0a8222be6..3fde60a2c 100755 --- a/testsuite/bc.tests +++ b/testsuite/bc.tests | |||
@@ -123,6 +123,23 @@ testing "bc define with body on next line" \ | |||
123 | "8\n9\n" \ | 123 | "8\n9\n" \ |
124 | "" "define w()\n{ auto z; return 8; }\nw()\n9" | 124 | "" "define w()\n{ auto z; return 8; }\nw()\n9" |
125 | 125 | ||
126 | testing "bc void function" \ | ||
127 | "bc" \ | ||
128 | "void9\n" \ | ||
129 | "" "define void w() {print \"void\"}\nw()\n9" | ||
130 | |||
131 | # Extra POSIX compat - GNU bc does not allow this | ||
132 | testing "bc function named 'void'" \ | ||
133 | "bc" \ | ||
134 | "void0\n9\n" \ | ||
135 | "" "define void() {print \"void\"}\nvoid()\n9" | ||
136 | |||
137 | # Extra POSIX compat - GNU bc does not allow this | ||
138 | testing "bc variable named 'void'" \ | ||
139 | "bc" \ | ||
140 | "6\n9\n" \ | ||
141 | "" "void=6\nvoid\n9" | ||
142 | |||
126 | testing "bc if(cond)<NL>" \ | 143 | testing "bc if(cond)<NL>" \ |
127 | "bc" \ | 144 | "bc" \ |
128 | "9\n" \ | 145 | "9\n" \ |