From 5d79dd04364371d040f2d914fdcfd2c35b96d8c4 Mon Sep 17 00:00:00 2001 From: Julie Tibshirani Date: Wed, 21 Aug 2019 00:20:16 -0700 Subject: [PATCH] Run the characterization tests in CI. (#485) Previously, the C++ characterization tests only passed when using clang because of differences in the way random numbers are generated across platforms. Because we build on a couple different platforms, we had to disable these tests in CI. Now that we've added platform-independent random number generation in #469 and #492, we can enable the characterization tests. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index fb5d43fec..e13bd54bb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,7 +33,7 @@ matrix: - mkdir build && cd build - cmake -DCMAKE_CXX_COMPILER=$COMPILER .. && make - cd .. - - valgrind --leak-check=full --error-exitcode=1 ./build/grf exclude:[characterization] + - valgrind --leak-check=full --error-exitcode=1 ./build/grf - name: "core grf C++: clang" compiler: clang @@ -59,7 +59,7 @@ matrix: - mkdir build && cd build - cmake -DCMAKE_CXX_COMPILER=$COMPILER .. && make - cd .. - - valgrind --leak-check=full --error-exitcode=1 ./build/grf exclude:[characterization] + - valgrind --leak-check=full --error-exitcode=1 ./build/grf - name: "grf R package" before_install: