Skip to content

Commit

Permalink
Add --output-on-failure flag to CircleCI ctest runs
Browse files Browse the repository at this point in the history
  • Loading branch information
msimberg committed Dec 1, 2017
1 parent 6cabb00 commit 48017bd
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions .circleci/config.yml
Expand Up @@ -162,7 +162,7 @@ jobs:
name: Running Unit Tests
when: always
command: |
ctest -T test --no-compress-output -R tests.unit.build
ctest -T test --no-compress-output --output-on-failure -R tests.unit.build
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -186,7 +186,7 @@ jobs:
name: Running Unit Tests
when: always
command: |
ctest -T test --no-compress-output -R tests.unit.diagnostics
ctest -T test --no-compress-output --output-on-failure -R tests.unit.diagnostics
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -210,7 +210,7 @@ jobs:
name: Running Unit Tests
when: always
command: |
ctest -T test --no-compress-output -R tests.unit.actions
ctest -T test --no-compress-output --output-on-failure -R tests.unit.actions
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -234,7 +234,7 @@ jobs:
name: Running Unit Tests
when: always
command: |
ctest -T test --no-compress-output -R tests.unit.agas
ctest -T test --no-compress-output --output-on-failure -R tests.unit.agas
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -258,7 +258,7 @@ jobs:
name: Running Unit Tests
when: always
command: |
ctest -T test --no-compress-output -R tests.unit.component
ctest -T test --no-compress-output --output-on-failure -R tests.unit.component
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -282,7 +282,7 @@ jobs:
name: Running Unit Tests
when: always
command: |
ctest -T test --no-compress-output -R tests.unit.computeapi
ctest -T test --no-compress-output --output-on-failure -R tests.unit.computeapi
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -306,7 +306,7 @@ jobs:
name: Running Unit Tests
when: always
command: |
ctest -T test --no-compress-output -R tests.unit.lcos
ctest -T test --no-compress-output --output-on-failure -R tests.unit.lcos
- run:
<<: *convert_xml
- store_test_results:
Expand Down Expand Up @@ -338,7 +338,7 @@ jobs:
name: Running Unit Tests
when: always
command: |
ctest -T test --no-compress-output -R tests.unit.parallel
ctest -T test --no-compress-output --output-on-failure -R tests.unit.parallel
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -362,7 +362,7 @@ jobs:
name: Running Unit Tests
when: always
command: |
ctest -T test --no-compress-output -R tests.unit.parcelset
ctest -T test --no-compress-output --output-on-failure -R tests.unit.parcelset
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -386,7 +386,7 @@ jobs:
name: Running Unit Tests
when: always
command: |
ctest -T test --no-compress-output -R tests.unit.performance_counter
ctest -T test --no-compress-output --output-on-failure -R tests.unit.performance_counter
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -410,7 +410,7 @@ jobs:
name: Running Unit Tests
when: always
command: |
ctest -T test --no-compress-output -R tests.unit.serialization
ctest -T test --no-compress-output --output-on-failure -R tests.unit.serialization
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -434,7 +434,7 @@ jobs:
name: Running Unit Tests
when: always
command: |
ctest -T test --no-compress-output -R tests.unit.threads
ctest -T test --no-compress-output --output-on-failure -R tests.unit.threads
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -458,7 +458,7 @@ jobs:
name: Running Unit Tests
when: always
command: |
ctest -T test --no-compress-output -R tests.unit.traits
ctest -T test --no-compress-output --output-on-failure -R tests.unit.traits
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -482,7 +482,7 @@ jobs:
name: Running Unit Tests
when: always
command: |
ctest -T test --no-compress-output -R tests.unit.util
ctest -T test --no-compress-output --output-on-failure -R tests.unit.util
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -506,7 +506,7 @@ jobs:
name: Running Regressions Tests
when: always
command: |
ctest -T test --no-compress-output -R tests.regressions
ctest -T test --no-compress-output --output-on-failure -R tests.regressions
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -525,7 +525,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output -R tests.headers.headers.compat
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.compat
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -544,7 +544,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output -R tests.headers.headers.components
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.components
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -563,7 +563,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output -R tests.headers.headers.compute
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.compute
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -582,7 +582,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output -R tests.headers.headers.config
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.config
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -601,7 +601,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output -R tests.headers.headers.include
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.include
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -620,7 +620,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output -R tests.headers.headers.lcos
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.lcos
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -639,7 +639,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output -R tests.headers.headers.parallel
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.parallel
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -658,7 +658,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output -R tests.headers.headers.performance_counters
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.performance_counters
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -677,7 +677,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output -R tests.headers.headers.plugins
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.plugins
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -696,7 +696,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output -R tests.headers.headers.runtime
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.runtime
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -715,7 +715,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output -R tests.headers.headers.traits
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.traits
- run:
<<: *convert_xml
- store_test_results:
Expand All @@ -734,7 +734,7 @@ jobs:
- run:
name: Building Header Tests
command: |
ctest -j2 -T test --no-compress-output -R tests.headers.headers.util
ctest -j2 -T test --no-compress-output --output-on-failure -R tests.headers.headers.util
- run:
<<: *convert_xml
- store_test_results:
Expand Down

0 comments on commit 48017bd

Please sign in to comment.