pike.git / src / testsuite.in

version» Context lines:

pike.git/src/testsuite.in:1: - test_true([["$Id: testsuite.in,v 1.689 2003/11/08 16:09:32 mast Exp $"]]); + test_true([["$Id: testsuite.in,v 1.690 2003/11/10 01:24:33 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:6522:   test_eq(78 || 1,78)   test_eq(78 || 0,78)      // testing |   test_eq(0 | 0,0)   test_eq(1 | 1,1)   test_eq(4 | 1,5)   test_eq(1 | 9,9)   test_eq([[ "\007" | "\023"]],"\027")   test_eq([[ "\177777x" | "ab" ]], "\177777z") - test_equal( ({1,2,3,4,4}) | ({3,5,6}), ({1,2,4,4,3,5,6})) + test_equal( ({1,2,3,4,4}) | ({3,5,6}), ({1,2,3,4,4,5,6}))   test_equal( (<4,5,6>) | (<5,5,5>), (<4,5,5,5,6>) )   test_equal( ([-4:8,8:7]) | ([3:3,8:3]), ([-4:8,8:3,3:3]) )   test_any([[    class Foo {int `< (object o) {return 0;}};    return sizeof (({Foo()}) | ({Foo()}));   ]], 2)      // testing &   test_eq(0 & 0,0)   test_eq(1 & 1,1)
pike.git/src/testsuite.in:6548:   test_equal( (<4,5,6>) & (<5,5,5>), (<5>) )   test_equal( ([-4:8,8:7]) & ([3:3,8:3]), ([8:3]) )      // testing ^   test_eq(0 ^ 0,0)   test_eq(1 ^ 1,0)   test_eq(4 ^ 1,5)   test_eq(1 ^ 9,8)   test_eq([[ "\007" ^ "\023"]],"\024")   test_eq([[ "\177777x" ^ "ab" ]], "\177636\32") - test_equal( Array.sort( ({1,2,3,4,4}) ^ ({3,5,6}) ) , ({1,2,4,4,5,6})) + test_equal( ({1,2,3,4,4}) ^ ({3,5,6}) , ({1,2,4,4,5,6}))   test_equal( (<4,5,6>) ^ (<5,5,5>), (<4,5,5,6>) )   test_equal( ([-4:8,8:7]) ^ ([3:3,8:3]), ([-4:8,3:3]) ) -  + test_equal(({1,3,3,3,4}) ^ ({2,3,3,5}), ({1,3,4,2,5})) + test_equal(({1,3,3,4}) ^ ({2,3,3,3,5}), ({1,4,2,3,5}))      // testing <<   test_eq(1<<0,1)   test_eq(1<<1,2)   test_eq(1<<10,1024)   test_eq(5<<3,40)   test_eval_error(return 17<<-10)      // testing >>   test_eq(9>>2,2)