Mercurial > public > hwos_code
view src/Tests/unit_test.pro @ 526:0d1cda9f2d43
BUGFIX: Skip MOD Test for CCR in Sensor modes (OSTC cR and OSTC3 only)
CHANGE: Swap positions of ppO2(O2) and ppO2(Dil) in customview 10 on screen. "left = lean" and "right = rich"
BUGFIX: A wrong configured gas was suggested as "Better gas" on the configured depth even if this resulted in a ppO2 high or low condition
author | heinrichsweikamp |
---|---|
date | Sat, 05 Aug 2017 16:50:28 +0200 |
parents | cd2320cd6f9a |
children |
line wrap: on
line source
#----------------------------------------------------------------------------- # # Project created by QtCreator 2013-03-29T10:58:23 # #----------------------------------------------------------------------------- TEMPLATE = app TARGET = unit_test CONFIG *= qt CONFIG -= app_bundle QT *= core QT -= gui DEFINES *= UNIX #----------------------------------------------------------------------------- # Need the GoogleTest 1.6.0 library here: GTEST=$$PWD/../../../gtest-1.6.0 !exists($$GTEST/include): GTEST=$$PWD/../../../../Dependencies/gtest-1.6.0 !exists($$GTEST/include): error(Requires GoogleTest 1.6.0) INCLUDEPATH *= $$GTEST/include $$GTEST/gtest-1.6.0 SOURCES *= $$GTEST/gtest-1.6.0/src/gtest-all.cc win32: DEFINES *= _VARIADIC_MAX=10 #----------------------------------------------------------------------------- # Avoid unwanted warnings unix { QMAKE_CXXFLAGS_WARN_ON *= -Wno-unknown-pragmas } win32 { QMAKE_CXXFLAGS *= -wd4244 -wd4068 -wd4305 } #----------------------------------------------------------------------------- SOURCES += \ $$PWD/../compass.c \ $$PWD/../compass_calib.c \ compass_trigo_test.cpp \ compass_test.cpp \ deco_volume_test.cpp \ unit_test.cpp INCLUDEPATH *= $$PWD/.. HEADERS += \ $$PWD/../shared_definitions.h \ $$PWD/../p2_definitions.h \ $$PWD/../p2_deco.c \ $$PWD/../compass.h