pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2022-06-30
2022-06-30 12:17:42 by Henrik Grubbström (Grubba) <grubba@grubba.org>
4acb52e8aaab95992fc7657ca1fbca47abc642f1 (
7
lines) (+
4
/-
3
)
[
Show
|
Annotate
]
Branch:
master
Testsuite: Fix typo in inhibition of warning.
467:
test_scopes(17, 16, 0) dnl sscanf("", ...) triggers this warning.
-
ignore_warning("Indexing the
empy
string.", [[
+
ignore_warning("Indexing the
empty
string.", [[
test_any([[ // LysLysKOM 14180500 if (1) {
5646:
test_compile(foreach(({}),mixed i){i;}) dnl sscanf("", ...) triggers this warning.
-
ignore_warning("Indexing the
empy
string.", [[
+
ignore_warning("Indexing the
empty
string.", [[
test_compile(sscanf("","%O",mixed foo);foo;) test_compile_error(sscanf("","",mixed foo);) test_compile_error(sscanf("","%f",float))
8723:
test_equal( array_sscanf("xfo\200000x", "%sfo\200000%s"), ({ "x", "x" }) ) dnl sscanf("", ...) triggers this warning.
-
ignore_warning("Indexing the
empy
string.", [[
+
ignore_warning("Indexing the
empty
string.", [[
test_any([[mixed a; sscanf("","%H",a); return a]],0) test_any([[mixed a; sscanf("\0","%H",a); return a]],"") test_any([[mixed a; sscanf("\4","%H",a); return a]],0)