pike.git / src / testsuite.in

version» Context lines:

pike.git/src/testsuite.in:14409:    if (sscanf(configure_script, "%*sAC_CONFIG_HEADER(%s)", string config_h)) {    // acconfig.h should exist.    report_test(res, !Stdio.is_file(combine_path(srcdir, dir, "acconfig.h")),    "acconfig.h missing in directory %s.\n", dir);    // config_h + ".in" should exist.    report_test(res, !Stdio.is_file(combine_path(srcdir, dir, config_h + ".in")),    "%s missing in directory %s.\n", config_h + ".in", dir);    // The Makefile should regenerate config_h et al.    report_test(res,    !has_value(makefile_in||"", "CONFIG_HEADERS=@CONFIG_HEADERS@"), -  "Makefile.in in directory %s is missing CONFIG_HEADERS.", dir); +  "Makefile.in in directory %s is missing CONFIG_HEADERS.\n", dir);    }    return res;    }       array(int) recur_test_dir(string dir)    {    array(int) res = test_dir(dir);       foreach(get_dir(combine_path(srcdir, dir)), string f) {    string path = combine_path(dir, f);