WIP: mixed propagation sample.

This commit is contained in:
Matthias Koefferlein 2018-09-23 00:53:19 +02:00
parent 2595f4ed6b
commit 8420b29025
2 changed files with 17 additions and 0 deletions

View File

@ -111,6 +111,11 @@ msvc {
} else {
CONFIG(gcov) {
QMAKE_CXXFLAGS += -fprofile-arcs -ftest-coverage
QMAKE_LFLAGS += -fprofile-arcs -ftest-coverage
}
QMAKE_CXXFLAGS_WARN_ON += \
-pedantic \
-Woverloaded-virtual \

View File

@ -148,3 +148,15 @@ TEST(BasicNot4)
// Sibling interactions, variant building, NOT
run_test_bool (_this, "hlp4.oas", TMNot, 101);
}
TEST(BasicAnd5)
{
// Variant building with intermediate hierarchy, AND
run_test_bool (_this, "hlp5.oas", TMAnd, 100);
}
TEST(BasicNot5)
{
// Variant building with intermediate hierarchy, NOT
run_test_bool (_this, "hlp5.oas", TMNot, 101);
}