From e5f78d978e4b3e65073199c4eb3a4ef8ffe7b1a7 Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Sat, 11 May 2019 23:52:47 +0200 Subject: [PATCH] Remove added DBF tests from the Travis target. Clozure doesn't have the CP866 encoding that the DBF files are using, and then PostgreSQL 9.6 doesn't have "create schema if not exists", which makes the tests fail on Travis. --- test/Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/test/Makefile b/test/Makefile index 079bd40..6e8ebc2 100644 --- a/test/Makefile +++ b/test/Makefile @@ -24,9 +24,6 @@ REGRESS= allcols.load \ copy.load \ copy-hex.load \ dbf.load \ - dbf-memo.load \ - dbf-31.load \ - dbf-8b.load \ errors.load \ fixed.load \ fields-with-periods.load \ @@ -37,6 +34,13 @@ REGRESS= allcols.load \ udc.load \ xzero.load +# Those are not included in the tests because CCL doesn't have the cp866 +# encoding, and then PostgreSQL 9.6 lacks "create schema if not exists". +# +# dbf-memo.load +# dbf-31.load +# dbf-8b.load + PGLOADER ?= ../build/bin/pgloader PGSUPERUSER ?= postgres