diff options
author | Joe George <joe@zeroc.com> | 2021-02-03 11:16:06 -0500 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2021-02-03 11:42:30 -0500 |
commit | 48f9b28634908c43a23c30e219a9abfb038c1539 (patch) | |
tree | 81420c7142bb57902ad96de1d057b5259c29a287 /scripts/Component.py | |
parent | IceGrid and IceStorm fixes (diff) | |
download | ice-48f9b28634908c43a23c30e219a9abfb038c1539.tar.bz2 ice-48f9b28634908c43a23c30e219a9abfb038c1539.tar.xz ice-48f9b28634908c43a23c30e219a9abfb038c1539.zip |
Additional C++11 fixes
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 |