mirror of
https://github.com/KjellKod/g3log.git
synced 2024-12-12 18:30:25 +01:00
14db37ad23
* Added thread ID configurable through API calls. Left to do g3sinks, documentation and some corner test cases for CHECK, LOG(FATAL) and FATAL signal * improve test script, break if error * easier to use API. Api docs added * Update API.markdown * Update API.markdown * Update API.markdown * updated readme with details for overriding default for "full details" * updated custom sink with custom formatting example
17 lines
293 B
Bash
Executable File
17 lines
293 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ev
|
|
set -x
|
|
unzip -o 3rdParty/gtest/gtest-1.7.0.zip -d 3rdParty/gtest
|
|
|
|
|
|
mkdir -p build_travis
|
|
cd build_travis
|
|
cmake -DCMAKE_CXX_FLAGS=-std=c++14 -DADD_G3LOG_UNIT_TEST=ON ..
|
|
|
|
makeArg=`grep -c ^processor /proc/cpuinfo`
|
|
|
|
make -j$makeArg
|
|
/bin/bash ../scripts/runAllTests.sh
|
|
|