summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-09-10 11:59:29 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-09-10 11:59:29 (GMT)
commit3d2df2eae1e70c6f665c91b11d5caedc357f9cc1 (patch)
tree7e0554a443dba03c440c727dc0f6c44a7137469b
parentc939eccf4a344a7389c1e21adec2a22df721e6a2 (diff)
downloadtcl-3d2df2eae1e70c6f665c91b11d5caedc357f9cc1.zip
tcl-3d2df2eae1e70c6f665c91b11d5caedc357f9cc1.tar.gz
tcl-3d2df2eae1e70c6f665c91b11d5caedc357f9cc1.tar.bz2
Run all test-cases with -verbose sbtel, so we can see which test-case actually hangs.
-rw-r--r--.travis.yml35
1 files changed, 15 insertions, 20 deletions
diff --git a/.travis.yml b/.travis.yml
index a360c2a..a52005f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,18 +15,15 @@ matrix:
dist: xenial
compiler: gcc
env:
- - CFGOPT=--disable-shared
+ - CFGOPT="--disable-shared"
- BUILD_DIR=unix
-# Debug build. Running test-cases disabled, because it is currently failing.
- - name: "Linux/GCC/Debug/no test"
+ - name: "Linux/GCC/Debug"
os: linux
dist: xenial
compiler: gcc
env:
- BUILD_DIR=unix
- - CFGOPT=--enable-symbols=all
- script:
- - make all tcltest
+ - CFGOPT="--enable-symbols"
# Older versions of GCC...
- name: "Linux/GCC 7/Shared"
os: linux
@@ -88,24 +85,22 @@ matrix:
dist: xenial
compiler: clang
env:
- - CFGOPT=--disable-shared
+ - CFGOPT="--disable-shared"
- BUILD_DIR=unix
-# Debug build. Running test-cases disabled, because it is currently failing.
- - name: "Linux/Clang/Debug/no test"
+ - name: "Linux/Clang/Debug"
os: linux
dist: xenial
compiler: clang
env:
- BUILD_DIR=unix
- - CFGOPT=--enable-symbols=all
- script:
- - make all tcltest
+ - CFGOPT="--enable-symbols"
# Testing on Mac, various styles
- name: "macOS/Xcode 11/Shared/Unix-like"
os: osx
osx_image: xcode11
env:
- BUILD_DIR=unix
+ - CFGOPT="--enable-threads"
- name: "macOS/Xcode 11/Shared"
os: osx
osx_image: xcode11
@@ -115,7 +110,7 @@ matrix:
script: &mactest
- make all
# The styles=develop avoids some weird problems on OSX
- - make test styles=develop
+ - make test styles=develop TESTFLAGS="-verbose sbtel"
- name: "macOS/Xcode 10/Shared"
os: osx
osx_image: xcode10.2
@@ -227,7 +222,7 @@ matrix:
install: []
script:
- cmd.exe /C 'vcvarsall.bat x64 && nmake OPTS=threads -f makefile.vc all tcltest'
- - cmd.exe /C 'vcvarsall.bat x64 && nmake OPTS=threads -f makefile.vc test'
+ - cmd.exe /C 'vcvarsall.bat x64 && nmake OPTS=threads -f makefile.vc test TESTFLAGS="-verbose sbtel"'
- name: "Windows/MSVC/Static"
os: windows
compiler: cl
@@ -236,7 +231,7 @@ matrix:
install: []
script:
- cmd.exe /C 'vcvarsall.bat x64 && nmake OPTS=static,msvcrt,threads -f makefile.vc all tcltest'
- - cmd.exe /C 'vcvarsall.bat x64 && nmake OPTS=static,msvcrt,threads -f makefile.vc test'
+ - cmd.exe /C 'vcvarsall.bat x64 && nmake OPTS=static,msvcrt,threads -f makefile.vc test TESTFLAGS="-verbose sbtel"'
- name: "Windows/MSVC/Debug"
os: windows
compiler: cl
@@ -245,7 +240,7 @@ matrix:
install: []
script:
- cmd.exe /C 'vcvarsall.bat x64 && nmake OPTS=symbols,msvcrt,threads -f makefile.vc all tcltest'
- - cmd.exe /C 'vcvarsall.bat x64 && nmake OPTS=symbols,msvcrt,threads -f makefile.vc test'
+ - cmd.exe /C 'vcvarsall.bat x64 && nmake OPTS=symbols,msvcrt,threads -f makefile.vc test TESTFLAGS="-verbose sbtel"'
# Test on Windows with MSVC native (32-bit)
- name: "Windows/MSVC-x86/Shared"
os: windows
@@ -255,7 +250,7 @@ matrix:
install: []
script:
- cmd.exe /C 'vcvarsall.bat x86 && nmake OPTS=threads -f makefile.vc all tcltest'
- - cmd.exe /C 'vcvarsall.bat x86 && nmake OPTS=threads -f makefile.vc test'
+ - cmd.exe /C 'vcvarsall.bat x86 && nmake OPTS=threads -f makefile.vc test TESTFLAGS="-verbose sbtel"'
- name: "Windows/MSVC-x86/Static"
os: windows
compiler: cl
@@ -264,7 +259,7 @@ matrix:
install: []
script:
- cmd.exe /C 'vcvarsall.bat x86 && nmake OPTS=static,msvcrt,threads -f makefile.vc all tcltest'
- - cmd.exe /C 'vcvarsall.bat x86 && nmake OPTS=static,msvcrt,threads -f makefile.vc test'
+ - cmd.exe /C 'vcvarsall.bat x86 && nmake OPTS=static,msvcrt,threads -f makefile.vc test TESTFLAGS="-verbose sbtel"'
- name: "Windows/MSVC-x86/Debug"
os: windows
compiler: cl
@@ -273,7 +268,7 @@ matrix:
install: []
script:
- cmd.exe /C 'vcvarsall.bat x86 && nmake OPTS=symbols,msvcrt,threads -f makefile.vc all tcltest'
- - cmd.exe /C 'vcvarsall.bat x86 && nmake OPTS=symbols,msvcrt,threads -f makefile.vc test'
+ - cmd.exe /C 'vcvarsall.bat x86 && nmake OPTS=symbols,msvcrt,threads -f makefile.vc test TESTFLAGS="-verbose sbtel"'
# Test on Windows with GCC native
- name: "Windows/GCC/Shared"
os: windows
@@ -328,4 +323,4 @@ before_script:
- export ERROR_ON_FAILURES=1
script:
- make all tcltest
- - make test
+ - make test TESTFLAGS="-verbose sbtel"