Message ID | 1510430406-22095-2-git-send-email-odpbot@yandex.ru |
---|---|
State | New |
Headers | show |
Series | [v4,1/1] shippable implement main page stats | expand |
diff --git a/.shippable.yml b/.shippable.yml index 9fbb29190..7f74a5928 100644 --- a/.shippable.yml +++ b/.shippable.yml @@ -39,6 +39,7 @@ build: - ./configure --disable-test-perf - make - sudo env ODP_SHM_DIR=/dev/shm/odp make check + - sh -x ./scripts/shipabble-stats.sh on_failure: - cat config.log diff --git a/scripts/shipabble-stats.sh b/scripts/shipabble-stats.sh new file mode 100755 index 000000000..88fbd16f3 --- /dev/null +++ b/scripts/shipabble-stats.sh @@ -0,0 +1,11 @@ +#!/bin/bash + + +cat <<EOF > $SHIPPABLE_BUILD_DIR/shippable/testresults/test_results.xml + +<?xml version="1.0"?> +<testsuites> + <testsuite name="max_test_suite" tests="30" time="0" failures="1" errors="2" skipped="3"> + </testsuite> +</testsuites> +EOF