pike.git / src / testsuite.in

version» Context lines:

pike.git/src/testsuite.in:1:   START_MARKER - test_true([["$Id: testsuite.in,v 1.889 2010/02/04 17:45:00 grubba Exp $"]]); + test_true([["$Id: testsuite.in,v 1.890 2010/02/09 12:30:24 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:2849:    }    }    ";       add_constant("A",A);    compile_string(to_compile);    add_constant("A");    return 0;   ]], 0)    + test_any([[ +  // Test eval_low() on seemingly constant expressions, that +  // attempt to access variables in the fake object. [Bug 5273] +  // An old pike (with RTL debug) will fail with the fatal +  // "Invalid type 33896 in svalue at 891e510." +  // during compilation. +  +  class Test +  { +  protected object foo; +  +  mixed `-> (mixed what) +  { +  return foo; +  } +  +  int bar () +  { +  return (this_object()->gazonk == "foo") ? 1 : 0; +  } +  }; +  +  return Test()->bar; + ]], 0) +    test_any([[string gurk="bozo"; string b(int x) { return (x?b(x-1)+gurk:""); }; return b(5)]],[["bozo"*5]])      dnl this should really work...   dnl test_compile_any([[void foo(int,string,...);]])      dnl This test doesn't run out of stack anymore, freaky   dnl test_eval_error([[class X { int create() { create(); } }();]])   test_compile_error([[ int float; ]])   test_compile_error([[ int array; ]])   test_compile_error([[ int function; ]])