pike.git / src / testsuite.in

version» Context lines:

pike.git/src/testsuite.in:1: - test_true([["$Id: testsuite.in,v 1.575 2002/12/03 17:57:45 marcus Exp $"]]); + test_true([["$Id: testsuite.in,v 1.576 2002/12/03 21:19:26 nilsson Exp $"]]);      // This triggered a bug only if run sufficiently early.   test_compile_any([[#pike 7.2]])      cond([[all_constants()->_verify_internals]],   [[    test_do(_verify_internals())   ]]);   test_eq(1e1,10.0);   test_eq(1E1,10.0);
pike.git/src/testsuite.in:9303:   }      void test_dir(string dir, int|void base_size, object|void handler)   {    // werror("Testing directory %O...\n", dir);    if(!base_size) base_size=sizeof(dir);    foreach(get_dir(dir), string s)    {    switch(s)    { -  case "msql.pike": -  case "mysql.pike": -  case "mysql_result.pike": -  case "odbc.pike": -  case "odbc_result.pike": -  case "oracle.pike": -  case "postgres.pike": -  case "postgres_result.pike": -  case "sybase.pike": +    #if !constant(GTK.Window)    case "GTKSupport.pmod":    case "PV.pike":    case "pv.pike":   #endif -  case "GZipFile.pike": +     continue; // These modules cannot be tested properly by this test    }    string file=combine_path(dir,s);    mixed stat=file_stat(file);    if(!stat) continue;    if(stat[1]==-2 && has_suffix(file, ".pmod"))    {    test_resolv(file, base_size, handler);    test_dir(file, base_size, handler);    }