pike.git / src / testsuite.in

version» Context lines:

pike.git/src/testsuite.in:1:   START_MARKER - test_true([["$Id: testsuite.in,v 1.851 2008/09/09 16:53:48 mast Exp $"]]); + test_true([["$Id: testsuite.in,v 1.852 2008/09/12 15:57:02 grubba 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:560:   test_type_error(program,array,({1,2,3}))   test_type_error(program,mapping,([1:2,3:4]))   test_type_error(program,multiset,(<1,2,3>))      test_type_error(object,int,17)   test_type_error(object,float,17.23)   test_type_error(object,array,({1,2,3}))   test_type_error(object,mapping,([1:2,3:4]))   test_type_error(object,multiset,(<1,2,3>))    + // Check that complex function types survive soft casting to function. + // FIXME: Globbing in ignoring warnings. + ignore_warning("Soft cast of scope(0,function((0=multiset), (1=multiset) ... : 0 | 1) | function((0=mapping), (1=mapping) ... : 0 | 1) | function((0=array), (1=array) ... : 0 | 1) | function(int, int ... : int) | !function(!string ... : mixed) & function(string | int | float, string | int | float ... : string) | !function(!(object | mixed) ... : mixed) & function(mixed ... : mixed) | !function(!float ... : mixed) & function(int | float, int | float ... : float)) to function is a noop.", [[ +  test_eq(typeof([function]`+), typeof(`+)) + ]]) +    test_any([[    /* Detect bug in modify_shared_string().    *    * Note: For proper operation this test depends on HASH_PREFIX being    * <= 128, and the initial string in test having a single ref.    */    string prefix = "A"*128;    string suffix = "B"*128;       string test = prefix + "C" + suffix;
pike.git/src/testsuite.in:8309:    }   ]]);   test_do([[    // Note: This is valid <= 7.0 code.    foreach (({1,2,3}), int j)    do    if (17 + j + gauge {break;}) return 0;    while (0);   ]]);   test_do([[ +  // Note: This is valid <= 7.0 code. +  foreach (({1,2,3}), int j) +  do +  if (17 - j - gauge {break;}) return 0; +  while (0); + ]]); + test_do([[    int gnu (mixed... args) {};    gnu(@indices (all_constants()), gauge {    foreach (({1,2,3}), int j)    do    if (j && gnu(@indices (all_constants()),    17 + gauge {break;}))    return 0;    while (0);    });   ]]);