Lines Matching full:platform
2 architecture and/or the platform dependent nature of the tests. """
98 # Provide uname-like platform name
124 # Use the triple to determine the platform if set.
127 platform = triple.split("-")[2]
128 if platform.startswith("freebsd"):
129 platform = "freebsd"
130 elif platform.startswith("netbsd"):
131 platform = "netbsd"
132 elif platform.startswith("openbsd"):
133 platform = "openbsd"
134 return platform
140 """Returns the host platform running the test suite."""
149 """Returns the target platform which the tests are running on."""
150 # Use the Apple SDK to determine the platform if set.
152 platform = configuration.apple_sdk
153 dot = platform.find(".")
155 platform = platform[:dot]
156 if platform == "iphoneos":
157 platform = "ios"
158 return platform
164 """Returns true if the OS triple for the selected platform is any valid apple OS"""
201 """Value object class which contains platform-specific options."""
232 return get_builder(sys.platform)
376 """Returns true iff a test is running on a darwin platform and the host linker is between versions 1000 and 1109."""