Browse Source

Workaround for jit and sylvan tests on travis

tempestpy_adaptions
Matthias Volk 7 years ago
parent
commit
384f17e32e
  1. 8
      travis/build-helper.sh

8
travis/build-helper.sh

@ -50,7 +50,13 @@ run() {
# Test all
travis_fold start test_all
cd build
ctest test --output-on-failure
# Hack to avoid memout problem with jit and sylvan
# 1. Run other tests without builder tests
ctest test --output-on-failure -E run-test-builder
# 2. Run builder tests without sylvan tests
./bin/test-builder --gtest_filter=-"DdJaniModelBuilderTest_Sylvan.*"
# 3. Just run sylvan tests
./bin/test-builder --gtest_filter="DdJaniModelBuilderTest_Sylvan.*"
travis_fold end test_all
;;

Loading…
Cancel
Save