projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6ef5d89
)
pg_regress: Write processed input/*.source into output dir
author
Peter Eisentraut
Sun, 15 Feb 2015 02:33:41 +0000
(21:33 -0500)
committer
Peter Eisentraut
Sun, 15 Feb 2015 06:20:57 +0000
(
01:20
-0500)
Before, it was writing the processed files into the input directory,
which is incorrect in a vpath build.
src/test/regress/pg_regress.c
patch
|
blob
|
blame
|
history
diff --git
a/src/test/regress/pg_regress.c
b/src/test/regress/pg_regress.c
index 5523a162258335f2717ca68ddb30ba29e692a8f1..2fbb2ecbdc2d74b325e331f04ba071f83340d879 100644
(file)
--- a/
src/test/regress/pg_regress.c
+++ b/
src/test/regress/pg_regress.c
@@
-607,7
+607,7
@@
convert_sourcefiles_in(char *source_subdir, char *dest_dir, char *dest_subdir, c
static void
convert_sourcefiles(void)
{
- convert_sourcefiles_in("input",
in
putdir, "sql", "sql");
+ convert_sourcefiles_in("input",
out
putdir, "sql", "sql");
convert_sourcefiles_in("output", outputdir, "expected", "out");
}