Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit08ed6c3

Browse files
committed
Regression makefile now needs to make separate lists of what to clean
for input/ and output/ directories, because with the addition oflargeobject_1.source, they're not the same list. Apparently the currentbuildfarm process does not exercise whether 'make distclean' leaves aclean tree behind, else the farm would have been failing for awhile.
1 parentbe40754 commit08ed6c3

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

‎src/test/regress/GNUmakefile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
77
# Portions Copyright (c) 1994, Regents of the University of California
88
#
9-
# $PostgreSQL: pgsql/src/test/regress/GNUmakefile,v 1.66 2007/02/09 15:56:00 petere Exp $
9+
# $PostgreSQL: pgsql/src/test/regress/GNUmakefile,v 1.67 2007/03/13 22:56:48 tgl Exp $
1010
#
1111
#-------------------------------------------------------------------------
1212

@@ -86,9 +86,10 @@ $(NAME)$(DLSUFFIX): $(shlib)
8686

8787
# Test input and expected files. These are created by pg_regress itself, so we
8888
# don't have a rule to create them. We do need rules to clean them however.
89-
file_list :=$(subst .source,,$(notdir$(wildcard$(top_srcdir)/$(subdir)/input/*.source)))
90-
input_files :=$(foreach file,$(file_list), sql/$(file).sql)
91-
output_files :=$(foreach file,$(file_list), expected/$(file).out)
89+
ifile_list :=$(subst .source,,$(notdir$(wildcard$(top_srcdir)/$(subdir)/input/*.source)))
90+
input_files :=$(foreach file,$(ifile_list), sql/$(file).sql)
91+
ofile_list :=$(subst .source,,$(notdir$(wildcard$(top_srcdir)/$(subdir)/output/*.source)))
92+
output_files :=$(foreach file,$(ofile_list), expected/$(file).out)
9293

9394
ifneq ($(PORTNAME),win32)
9495
abs_srcdir :=$(shell cd$(srcdir) && pwd)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp