mirror of
https://github.com/postgres/postgres.git
synced 2026-01-05 23:38:41 +03:00
Both tools never had safeguard checks for the options provided, and it was possible to make pg_test_fsync run an infinite amount of time or pass down buggy values to pg_test_timing. These behaviors have existed for a long time, with no actual complaints, so no backpatch is done. Basic TAP tests are introduced for both tools. Author: Michael Paquier Reviewed-by: Peter Eisentraut Discussion: https://postgr.es/m/20200806062759.GE16470@paquier.xyz
36 lines
724 B
Makefile
36 lines
724 B
Makefile
# src/bin/pg_test_fsync/Makefile
|
|
|
|
PGFILEDESC = "pg_test_fsync - test various disk sync methods"
|
|
PGAPPICON = win32
|
|
|
|
subdir = src/bin/pg_test_fsync
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
OBJS = \
|
|
$(WIN32RES) \
|
|
pg_test_fsync.o
|
|
|
|
all: pg_test_fsync
|
|
|
|
pg_test_fsync: $(OBJS) | submake-libpgport
|
|
$(CC) $(CFLAGS) $^ $(LDFLAGS) $(LDFLAGS_EX) $(LIBS) -o $@$(X)
|
|
|
|
install: all installdirs
|
|
$(INSTALL_PROGRAM) pg_test_fsync$(X) '$(DESTDIR)$(bindir)/pg_test_fsync$(X)'
|
|
|
|
installdirs:
|
|
$(MKDIR_P) '$(DESTDIR)$(bindir)'
|
|
|
|
check:
|
|
$(prove_check)
|
|
|
|
installcheck:
|
|
$(prove_installcheck)
|
|
|
|
uninstall:
|
|
rm -f '$(DESTDIR)$(bindir)/pg_test_fsync$(X)'
|
|
|
|
clean distclean maintainer-clean:
|
|
rm -f pg_test_fsync$(X) $(OBJS)
|