Skip to content

Commit e25e25d

Browse files
authored
[Dexter] Add -v to lit dexter substitutions (#158025)
Buildbot cross-project-tests-sie-ubuntu has been flaky after moving to lldb-dap. https://lab.llvm.org/buildbot/#/builders/181/builds/27670 - this test fails for a single run but unfortunately there's not enough output to diagnose it. Add `-v` to the substitutions to get as much info as possible out of failures. Most tests already have -v added manually. If we ever find a tests needs to specifically run without it we can revert this and add `-v` manually to tests it's missing from.
1 parent 9334ef9 commit e25e25d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cross-project-tests/lit.cfg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def configure_dexter_substitutions():
116116
dexter_path = os.path.join(
117117
config.cross_project_tests_src_root, "debuginfo-tests", "dexter", "dexter.py"
118118
)
119-
tools.append(ToolSubst("%dexter", f'"{sys.executable}" "{dexter_path}" test'))
119+
tools.append(ToolSubst("%dexter", f'"{sys.executable}" "{dexter_path}" test -v'))
120120
if lldb_dap_path is not None:
121121
tools.append(
122122
ToolSubst(
@@ -167,7 +167,7 @@ def configure_dexter_substitutions():
167167
'"{}"'.format(sys.executable),
168168
'"{}"'.format(dexter_path),
169169
"test",
170-
"--fail-lt 1.0 -w",
170+
"--fail-lt 1.0 -w -v",
171171
"--debugger",
172172
dexter_regression_test_debugger,
173173
dexter_regression_test_additional_flags,

0 commit comments

Comments
 (0)