From cff8b068e07cd84c530b53f6aa6d7f85a74cf6a0 Mon Sep 17 00:00:00 2001 From: James Dinan Date: Mon, 26 Feb 2018 18:16:32 -0500 Subject: [PATCH] Travis: Re-enable threads tests Signed-off-by: James Dinan --- .travis.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 483325c..f828701 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,11 +36,9 @@ script: - cd $SOS_SRC - mkdir build - cd build - - oshcc -showme - - oshc++ -showme - - oshfort -showme - # FIXME: Fortran and threads tests temporarily disabled because of - # compilation issues in Travis environment - - ../configure CC=oshcc CXX=oshc++ FC=oshfort CFLAGS="-std=gnu99" FCFLAGS="-fcray-pointer" --disable-fortran --disable-threads + # FIXME: Fortran tests temporarily disabled because of compilation issues + # in Travis environment. With gcc 4.8 in Ubuntu Trusty, pthreads configury + # doesn't seem to detect the need for -lpthread. + - ../configure CC=oshcc CXX=oshc++ FC=oshfort CFLAGS="-std=gnu99" FCFLAGS="-fcray-pointer" LDFLAGS="-lpthread" --disable-fortran - make $TRAVIS_PAR_MAKE - make check