Travis: Added GCC 6

This commit is contained in:
Benoit Blanchon
2017-05-02 21:32:19 +02:00
parent 34674fc282
commit 9efc0ec40d
2 changed files with 7 additions and 1 deletions

View File

@ -44,6 +44,12 @@ matrix:
sources: ['ubuntu-toolchain-r-test'] sources: ['ubuntu-toolchain-r-test']
packages: ['g++-5'] packages: ['g++-5']
env: SCRIPT=cmake GCC=5 SANITIZE=undefined env: SCRIPT=cmake GCC=5 SANITIZE=undefined
- compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-6']
env: SCRIPT=cmake GCC=6
- compiler: clang - compiler: clang
env: SCRIPT=cmake env: SCRIPT=cmake
- compiler: clang - compiler: clang

View File

@ -103,7 +103,7 @@ TEST_CASE("JsonVariant::printTo()") {
} }
SECTION("UInt64") { SECTION("UInt64") {
check(18446744073709551615, "18446744073709551615"); check(18446744073709551615U, "18446744073709551615");
} }
#endif #endif
} }