mirror of
https://github.com/dimitri/pgloader.git
synced 2026-05-04 18:36:12 +02:00
Try to get more information from CCL in testing.
The “magic” options --batch and --heap-reserve will be processed by CCL itself before pgloader gets to see them, so try that in the testing environment.
This commit is contained in:
parent
de9b43c332
commit
1469789ede
2
Makefile
2
Makefile
@ -45,7 +45,7 @@ BUILDAPP_OPTS = --require sb-posix \
|
||||
CL_OPTS = --noinform --no-sysinit --no-userinit
|
||||
else
|
||||
BUILDAPP = $(BUILDAPP_CCL)
|
||||
CL_OPTS = --no-init --batch
|
||||
CL_OPTS = --no-init
|
||||
endif
|
||||
|
||||
ifeq ($(CL),sbcl)
|
||||
|
||||
@ -35,6 +35,11 @@ REGRESS= allcols.load \
|
||||
|
||||
PGLOADER ?= ../build/bin/pgloader
|
||||
|
||||
EXTRA_OPTS =
|
||||
ifneq (,$(findstring ccl,$(CL)))
|
||||
EXTRA_OPTS = --batch --heap-reserve 150g
|
||||
endif
|
||||
|
||||
regress: clean-out $(addprefix regress/out/, $(REGRESS:.load=.out)) ;
|
||||
|
||||
clean-out:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user