Fix xslt_process() to ensure that it inserts a NULL terminator after the
[PostgreSQL.git] / src / test / regress / pg_regress_main.c
blobcb477a6a9ba4723b316f2ec2f418bef467a59c99
1 /*-------------------------------------------------------------------------
3 * pg_regress_main --- regression test for the main backend
5 * This is a C implementation of the previous shell script for running
6 * the regression tests, and should be mostly compatible with it.
7 * Initial author of C translation: Magnus Hagander
9 * This code is released under the terms of the PostgreSQL License.
11 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
12 * Portions Copyright (c) 1994, Regents of the University of California
14 * $PostgreSQL$
16 *-------------------------------------------------------------------------
19 #include "pg_regress.h"
22 * start a psql test process for specified file (including redirection),
23 * and return process ID
25 static PID_TYPE
26 psql_start_test(const char *testname,
27 _stringlist ** resultfiles,
28 _stringlist ** expectfiles,
29 _stringlist ** tags)
31 PID_TYPE pid;
32 char infile[MAXPGPATH];
33 char outfile[MAXPGPATH];
34 char expectfile[MAXPGPATH];
35 char psql_cmd[MAXPGPATH * 3];
38 * Look for files in the output dir first, consistent with a vpath search.
39 * This is mainly to create more reasonable error messages if the file is
40 * not found. It also allows local test overrides when running pg_regress
41 * outside of the source tree.
43 snprintf(infile, sizeof(infile), "%s/sql/%s.sql",
44 outputdir, testname);
45 if (!file_exists(infile))
46 snprintf(infile, sizeof(infile), "%s/sql/%s.sql",
47 inputdir, testname);
49 snprintf(outfile, sizeof(outfile), "%s/results/%s.out",
50 outputdir, testname);
52 snprintf(expectfile, sizeof(expectfile), "%s/expected/%s.out",
53 outputdir, testname);
54 if (!file_exists(expectfile))
55 snprintf(expectfile, sizeof(expectfile), "%s/expected/%s.out",
56 inputdir, testname);
58 add_stringlist_item(resultfiles, outfile);
59 add_stringlist_item(expectfiles, expectfile);
61 snprintf(psql_cmd, sizeof(psql_cmd),
62 SYSTEMQUOTE "\"%s%spsql\" -X -a -q -d \"%s\" < \"%s\" > \"%s\" 2>&1" SYSTEMQUOTE,
63 psqldir ? psqldir : "",
64 psqldir ? "/" : "",
65 dblist->str,
66 infile,
67 outfile);
69 pid = spawn_process(psql_cmd);
71 if (pid == INVALID_PID)
73 fprintf(stderr, _("could not start process for test %s\n"),
74 testname);
75 exit_nicely(2);
78 return pid;
81 static void
82 psql_init(void)
84 /* set default regression database name */
85 add_stringlist_item(&dblist, "regression");
88 int
89 main(int argc, char *argv[])
91 return regression_main(argc, argv, psql_init, psql_start_test);