pike.git / src / testsuite.in

version» Context lines:

pike.git/src/testsuite.in:1:   START_MARKER - test_true([["$Id: testsuite.in,v 1.886 2009/11/30 14:02:34 grubba Exp $"]]); + test_true([["$Id: testsuite.in,v 1.887 2010/01/21 14:38:31 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:2802:    constant foo = "inner";    }    }    };    class Y {    inherit X.X;    };    return Y()->foo;   ]], "middle")    + test_any([[ +  // Test symbol lookup in multi-pass. +  // LysLysKOM 18285732 +  // An old pike will fail with the fatal +  // "Identifier out of range, loc->parent_identifer=-1!" +  // during __INIT(). +  +  class A +  { +  static string foo = "bar"; +  }; +  +  string to_compile=#" +  constant fum = \"gazonk\"; +  +  class B() +  { +  inherit A; +  string fi() +  { +  return fum?1:0; +  } +  } +  "; +  +  add_constant("A",A); +  compile_string(to_compile); +  add_constant("A"); +  return 0; + ]], 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; ]])