pike.git / src / testsuite.in

version» Context lines:

pike.git/src/testsuite.in:1: - test_true([["$Id: testsuite.in,v 1.543 2002/10/01 10:53:56 grubba Exp $"]]); + test_true([["$Id: testsuite.in,v 1.544 2002/10/03 21:49:18 mast Exp $"]]);      // This triggered a bug only if run sufficiently early.   test_compile_any([[#pike 7.2]])      cond([[all_constants()->_verify_internals]],   [[    test_do(_verify_internals())   ]]);   test_eq(1e1,10.0);   test_eq(1E1,10.0);
pike.git/src/testsuite.in:3298:   ]) ) ]])      ]])      cond([[all_constants()->localtime && all_constants()->mktime]],   [[    test_any([[int x=time(); return mktime(localtime(x)) == x;]], 1)    test_any([[int x=time(); for(int y=0;y<100;y++) if(mktime(localtime(x+y)) != x+y) return x+y; return 0;]], 0)   ]])    + test_do([[catch(localtime(-1))]]) + test_do([[catch(gmtime(-1))]]) + test_do([[catch(ctime(-1))]]) +    cond([[all_constants()->_verify_internals]],   [[    test_do(_verify_internals())   ]])      // sort   test_equal(sort(({1,3,2,4})),({1,2,3,4}))   test_equal(sort(({4,3,2,1})),({1,2,3,4}))   test_equal([[lambda() {array(int) a=({1,2,3,4}); sort(({4,3,2,1}),a); return a; }()]],[[({4,3,2,1})]] )   test_equal([[lambda() {array(int) a=({1,2,3,4}), b=a+({}); sort(({4,3,2,1}),a,b); return b; }()]],[[({4,3,2,1})]] )