travis folding following echo

This commit is contained in:
NikVolf 2016-12-15 11:38:56 +01:00
parent 19559052e7
commit 59b30436c9
3 changed files with 4 additions and 0 deletions

View File

@ -26,9 +26,11 @@ addons:
- oracle-java8-set-default
script:
- echo -en 'travis_fold:start:tests'
- echo Running tests from /tools/test.sh
- ./tools/test.sh
- echo -en 'travis_fold:end:tests'
- echo -en 'travis_fold:start:build.release'
- echo Building in release mode
- cargo build --release
- echo -en 'travis_fold:end:build.release'
- ./tools/bench.sh

View File

@ -1,4 +1,5 @@
#!/bin/bash
echo -en 'travis_fold:start:bench'
echo 'Running bench from /benhcer'
cargo run --manifest-path ./bencher/Cargo.toml --release
echo -en 'travis_fold:end:bench'

View File

@ -1,6 +1,7 @@
#!/bin/bash
echo -en 'travis_fold:start:Regtests'
echo 'Running regtests from ./tools/compare-tool/pull-tests-be0eef7.jar'
./target/release/pbtc --regtest --db-cache=192 &
! java -jar ./tools/compare-tool/pull-tests-be0eef7.jar /tmp/regtest-db 2>&1 | tee regtests-full.log | grep -E --color=auto 'org.bitcoinj.store.BlockStoreException\:|BitcoindComparisonTool.main\: ERROR|bitcoind sent us a block it already had, make sure bitcoind has no blocks!|java.lang.NullPointerException'