mirror of
https://github.com/protobuf-c/protobuf-c.git
synced 2024-12-28 14:48:18 +08:00
bfd88382e6
"As with the serial harness above, by default one status line is printed per completed test, and a short summary after the suite has completed. However, standard output and standard error of the test are redirected to a per-test log file, so that parallel execution does not produce intermingled output. The output from failed tests is collected in the test-suite.log file. If the variable ‘VERBOSE’ is set, this file is output after the summary." (http://www.gnu.org/software/automake/manual/html_node/Parallel-Test-Harness.html)
15 lines
394 B
YAML
15 lines
394 B
YAML
language: cpp
|
|
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
|
|
install:
|
|
- sudo apt-get -q install protobuf-compiler libprotobuf-dev libprotoc-dev
|
|
valgrind
|
|
|
|
script:
|
|
- ./autogen.sh
|
|
- ./configure && make distcheck VERBOSE=1 && make clean
|
|
- ./configure --enable-valgrind-tests && make distcheck
|
|
DISTCHECK_CONFIGURE_FLAGS="--enable-valgrind-tests" VERBOSE=1 && make clean
|