pike.git / src / testsuite.in

version» Context lines:

pike.git/src/testsuite.in:1: - test_true([["$Id: testsuite.in,v 1.703 2004/03/08 09:30:20 grubba Exp $"]]); + test_true([["$Id: testsuite.in,v 1.704 2004/03/08 09:30:46 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:10642:    object pid = Process.create_process(RUNPIKE_ARRAY +    ({ "SRCDIR/test_co.pike" }));    int i;    for (i=0; i < 60; i++) {    if (pid->status()>0) break;    __signal_watchdog();    sleep(1);    }    if (pid->status() <= 0) {    pid->kill(9); -  return "Killed". +  return "Killed";    }    return pid->wait();   ], 0)   test_do_([[ catch { _do_call_outs(); }]])      // - varargs   test_any_equal([[    mixed test(int a, mixed ... b) {    return b;    };