6 config
.name
= "Builtins"
9 config
.test_source_root
= os
.path
.dirname(__file__
)
12 config
.suffixes
= [".c", ".cpp", ".m", ".mm"]
14 # Define %clang and %clangxx substitutions to use in test RUN lines.
15 config
.substitutions
.append(("%clang ", " " + config
.clang
+ " "))
17 if config
.host_os
== "Darwin":
18 config
.substitutions
.append(
19 ("%macos_version_major", str(config
.darwin_osx_version
[0]))
21 config
.substitutions
.append(
22 ("%macos_version_minor", str(config
.darwin_osx_version
[1]))
24 config
.substitutions
.append(
25 ("%macos_version_subminor", str(config
.darwin_osx_version
[2]))