pike.git
/
src
/
testsuite.in
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/testsuite.in:1:
START_MARKER // This triggered a bug only if run sufficiently early.
-
test_compile_any([[#pike 7.4]])
+
test_compile_any([[#pike 7.6]]) test_compile_any([[#pike 7.8]]) test_compile_any([[#pike 8.0]]) cond([[all_constants()->_verify_internals]], [[ test_do(_verify_internals()) ]]); test_eq(1e1,10.0); test_eq(1E1,10.0);
pike.git/src/testsuite.in:10977:
test_eval_error( return hash("foo",-1) ) // - hash_7_4 define(test_hash_7_4, [[ test_any([[ int i = hash_7_4($1); return ]]dnl ifelse([[$3]],,, [[((i==$2)||(i==$3))?$2:]])dnl [[i; ]], $2)
-
test_any([[
-
int i = 7.4::hash($1);
-
return ]]dnl
-
ifelse([[$3]],,, [[((i==$2)||(i==$3))?$2:]])dnl
-
[[i;
-
]], $2)
-
test_any([[
-
#pike 7.4
-
int i = hash($1);
-
return ]]dnl
-
ifelse([[$3]],,, [[((i==$2)||(i==$3))?$2:]])dnl
-
[[i;
-
]], $2)
+
]]) test_hash_7_4("foo",2091538203) test_hash_7_4([["foo",10]],3) test_hash_7_4("bar",2091518428) test_hash_7_4([["bar",10]],8) test_hash_7_4("b\666arqwerty1234", 2142487018, 1858424874) test_hash_7_4("",0) test_eval_error( return 7.4::hash("foo",0) ) // - hash_7_0