diff options
Diffstat (limited to 'scripts/Component.py')
-rw-r--r-- | scripts/Component.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/Component.py b/scripts/Component.py index 22304270b87..11995d71e14 100644 --- a/scripts/Component.py +++ b/scripts/Component.py @@ -145,6 +145,11 @@ class Ice(Component): if testId == "IceStorm/repgrid": return False + # No C++98 tests for IceBridge, IceGrid, IceStorm and Glacier2 + if isinstance(mapping, CppMapping) and not current.config.cpp11: + if parent in ["IceBridge", "IceGrid", "IceStorm", "Glacier2"]: + return False + if current.config.xamarin and not current.config.uwp: # # With Xamarin on Android and iOS Ice/udp is only supported with IPv4 |