Travis: Fail fast, disable JIT for functional tests.

Disable JIT to find cause for random `PANIC: unprotected error in call to Lua API` on Travis (OS X).
This commit is contained in:
Florian Walch 2015-02-02 17:19:12 +01:00
parent 6360be982f
commit 2eda611cbc
2 changed files with 6 additions and 0 deletions

View File

@ -28,6 +28,7 @@ matrix:
- os: osx
env: CI_TARGET=gcc
compiler: gcc-4.9
fast_finish: true
before_install:
# Pins the version of the java package installed on the Travis VMs
# and avoids a lengthy upgrade process for them.

View File

@ -1,3 +1,8 @@
if jit then
-- Disable JIT because of random errors on Travis with OS X.
jit.off(true, true)
end
require('coxpcall')
local Loop = require('nvim.loop')
local MsgpackStream = require('nvim.msgpack_stream')