https://github.com/philsquared/Catch
Raw File
Tip revision: 9b851a3bcba67d15ecaf002ed57d352a8ffb8ce9 authored by James Trey Nickelsen on 19 August 2015, 19:59:48 UTC
[On behalf of Lexmark]: Initialize scalar field in catch_assertionresult.h
Tip revision: 9b851a3
.travis.yml
language: cpp

compiler:
  - clang
  - gcc

env:
  - BUILD_TYPE=Debug
  - BUILD_TYPE=Release

install:
  - cmake -Hprojects/CMake -BBuild -DCMAKE_BUILD_TYPE=$BUILD_TYPE
  - cd Build
  - make
  - cd ..

script:
  - cd Build
  - ctest -V
back to top