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

Commit16c33c5

Browse files
committed
Redirect install output of make check into a log file
dbf2ec1 changed make check so that the installation logs get directedto stdout and stderr. Per discussion on -hackers, this patch restoressaving it to a file. It is now saved in /tmp_install/log, which iscreated once per invocation of any make target doing regression tests.Along the way, add a missing /log/ entry to test_ddl_deparse's.gitignore.Michael Paquier.
1 parent766dcfb commit16c33c5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

‎src/Makefile.global.in

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,9 +307,10 @@ temp-install:
307307
ifndefNO_TEMP_INSTALL
308308
ifeq ($(MAKELEVEL),0)
309309
rm -rf '$(abs_top_builddir)'/tmp_install
310-
$(MAKE) -C '$(top_builddir)' DESTDIR='$(abs_top_builddir)'/tmp_install install
310+
$(MKDIR_P) '$(abs_top_builddir)'/tmp_install/log
311+
$(MAKE) -C '$(top_builddir)' DESTDIR='$(abs_top_builddir)'/tmp_install install >'$(abs_top_builddir)'/tmp_install/log/install.log 2>&1
311312
endif
312-
$(if $(EXTRA_INSTALL),for extra in $(EXTRA_INSTALL); do $(MAKE) -C '$(top_builddir)'/$$extra DESTDIR='$(abs_top_builddir)'/tmp_install install || exit; done)
313+
$(if $(EXTRA_INSTALL),for extra in $(EXTRA_INSTALL); do $(MAKE) -C '$(top_builddir)'/$$extra DESTDIR='$(abs_top_builddir)'/tmp_install install>>'$(abs_top_builddir)'/tmp_install/log/install.log|| exit; done)
313314
endif
314315

315316
PROVE = @PROVE@
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
/log/
12
/results/

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp