1
0
Fork 0

Libfuzzer tests are flaky, disabling them for now

This commit is contained in:
Mikhail Goncharov 2023-03-07 16:16:13 +01:00
parent abe5c8991b
commit 0bb932732e
2 changed files with 4 additions and 6 deletions

View file

@ -3,8 +3,6 @@ import json
import argparse
import requests
# print(json.loads(re.json()))
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Run sample build on buildkite.')
parser.add_argument('--dryrun', action='store_true')
@ -18,14 +16,13 @@ if __name__ == '__main__':
'ph_log_level': 'DEBUG',
#'ph_skip_linux': 'skip',
#'ph_linux_agents': '{"queue": "linux-google-test"}',
'ph_linux_agents': '{"queue": "linux"}',
'ph_linux_agents': '{"queue": "linux-test"}',
# 'ph_linux_agents': '{"queue": "linux-clang15-test"}',
# 'ph_skip_windows': 'skip',
'ph_windows_agents': f'{{"name": "win-dev", "queue": "windows-test"}}',
# 'ph_windows_agents': f'{{"queue": "windows"}}',
#'ph_windows_agents': f'{{"name": "win-dev", "queue": "windows-test"}}',
'ph_windows_agents': '{"queue": "windows-test"}',
# 'ph_scripts_refspec': 'windows-vscmd',
'ph_projects': 'all',
'ph_skip_windows': 'skip',
# 'ph_windows_agents': f'{{"name": "", "queue": "{queue}"}}',
}})
print(d)

View file

@ -22,6 +22,7 @@ arguments:
- '-D CMAKE_BUILD_TYPE=Release'
- '-D LLVM_ENABLE_ASSERTIONS=ON'
- '-D LLVM_BUILD_EXAMPLES=ON'
- '-D COMPILER_RT_BUILD_LIBFUZZER=OFF' # Libfuzzer tests are flaky.
- '-D LLVM_LIT_ARGS="-v --xunit-xml-output test-results.xml"'
linux:
# CCACHE is enabled in script iff environment variable `CCACHE_DIR` is set