From 1469789ede52e08631f2c5f6cab1cfbb5cd9044e Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Wed, 14 Jun 2017 21:12:54 +0200 Subject: [PATCH] Try to get more information from CCL in testing. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- Makefile | 2 +- test/Makefile | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 058f45b..a0c0486 100644 --- a/Makefile +++ b/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) diff --git a/test/Makefile b/test/Makefile index 6161c6b..a8a2f45 100644 --- a/test/Makefile +++ b/test/Makefile @@ -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: