diff --git a/src/testsuite.in b/src/testsuite.in index baa62c95063ee1b71ab3982e8039914975d9f17c..5e446a99f2731943b9f895d8bdf03335e83c19d9 100644 --- a/src/testsuite.in +++ b/src/testsuite.in @@ -1,5 +1,5 @@ START_MARKER -test_true([["$Id: testsuite.in,v 1.815 2008/05/18 14:09:45 grubba Exp $"]]); +test_true([["$Id: testsuite.in,v 1.816 2008/05/18 14:24:59 grubba Exp $"]]); // This triggered a bug only if run sufficiently early. test_compile_any([[#pike 7.2]]) @@ -6741,7 +6741,7 @@ test_do(add_constant("test")) // sscanf test_any([[mixed a; return sscanf("11","%d",a)]],1) -test_any([[mixed a; return sscanf("11","%*d",a)]],1) +test_any([[return sscanf("11","%*d")]],1) test_any([[mixed a; return sscanf("11","_%d",a)]],0) test_any([[mixed a,b,c; return sscanf("11","%1d%1d%1d",a,b,c)]],2)