aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/boringssl/gen_build_yaml.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/boringssl/gen_build_yaml.py')
-rwxr-xr-xsrc/boringssl/gen_build_yaml.py37
1 files changed, 2 insertions, 35 deletions
diff --git a/src/boringssl/gen_build_yaml.py b/src/boringssl/gen_build_yaml.py
index 27c0c776c0..b5b5549d00 100755
--- a/src/boringssl/gen_build_yaml.py
+++ b/src/boringssl/gen_build_yaml.py
@@ -48,6 +48,7 @@ class Grpc(object):
yaml = None
def WriteFiles(self, files, asm_outputs):
+
self.yaml = {
'#': 'generated with tools/buildgen/gen_boring_ssl_build_yaml.py',
'raw_boringssl_build_output_for_debugging': {
@@ -98,41 +99,7 @@ class Grpc(object):
'boringssl',
]
}
- for test in sorted(files['test'])
- ],
- 'targets': [
- {
- 'name': 'boringssl_%s' % os.path.splitext(os.path.basename(test))[0],
- 'build': 'test',
- 'run': False,
- 'secure': 'no',
- 'language': 'c++',
- 'src': [],
- 'vs_proj_dir': 'test/boringssl',
- 'boringssl': True,
- 'defaults': 'boringssl',
- 'deps': [
- 'boringssl_%s_lib' % os.path.splitext(os.path.basename(test))[0],
- 'boringssl_test_util',
- 'boringssl',
- ]
- }
- for test in sorted(files['test'])
- ],
- 'tests': [
- {
- 'name': 'boringssl_%s' % os.path.basename(test[0]),
- 'args': [map_testarg(arg) for arg in test[1:]],
- 'exclude_configs': ['asan', 'ubsan'],
- 'ci_platforms': ['linux', 'mac', 'posix', 'windows'],
- 'platforms': ['linux', 'mac', 'posix', 'windows'],
- 'flaky': False,
- 'language': 'c++',
- 'boringssl': True,
- 'defaults': 'boringssl',
- 'cpu_cost': 1.0
- }
- for test in files['tests']
+ for test in list(sorted(set(files['ssl_test'] + files['crypto_test'])))
]
}