pike.git / src / testsuite.in

version» Context lines:

pike.git/src/testsuite.in:1: - test_true([["$Id: testsuite.in,v 1.650 2003/05/30 23:19:26 mast Exp $"]]); + test_true([["$Id: testsuite.in,v 1.651 2003/06/02 16:36:14 mast Exp $"]]);      // This triggered a bug only if run sufficiently early.   test_compile_any([[#pike 7.2]])   test_compile_any([[#pike 7.4]])   test_compile_any([[#pike 7.0]])   test_compile_any([[#pike 0.6]])      cond([[all_constants()->_verify_internals]],   [[    test_do(_verify_internals())
pike.git/src/testsuite.in:4451:      test_any([[    mapping m = set_weak_flag (([1:1]), 1);    m_delete (m, 1);    return get_weak_flag (([]));   ]], 0);      test_equal([[lambda(mapping x){return ({x[17]++,x[17]++,x[17]++});}(([]))]],    [[({0,1,2})]])    + test_equal([[([1:2, 3:4]) - (<0, 1, 2>)]], ([3:4])) + test_equal([[([1:2, 3:4]) - ({0, 1, 2})]], ([3:4])) + test_equal([[([1:2, 3:4]) & (<0, 1, 2>)]], ([1:2])) + test_equal([[([1:2, 3:4]) & ({0, 1, 2})]], ([1:2])) +    // destructed indices   test_any([[{    object o = class{}();    mapping m = ([o: 1]);    destruct (o);    return equal (m, ([])) && equal (m, ([]));   }]], 1)   test_any([[{    object o = class{}();    mapping m = ([o: 1]), n = ([class{}(): 1]);