forked from OSchip/llvm-project
[TSan] Fix incorrect expansion of `%deflake` lit substitution.
dadc214e4d
introduced a change to
`%deflake` to support a configurable threshold but the patch forgot
to add a trailing space.
This commit is contained in:
parent
c3478eff7a
commit
ddd2257f48
|
@ -75,7 +75,7 @@ config.substitutions.append( ("%clangxx_tsan ", build_invocation(clang_tsan_cxxf
|
|||
# Define CHECK-%os to check for OS-dependent output.
|
||||
config.substitutions.append( ('CHECK-%os', ("CHECK-" + config.host_os)))
|
||||
|
||||
config.substitutions.append( ("%deflake ", os.path.join(os.path.dirname(__file__), "deflake.bash") + " " + config.deflake_threshold))
|
||||
config.substitutions.append( ("%deflake ", os.path.join(os.path.dirname(__file__), "deflake.bash") + " " + config.deflake_threshold + " "))
|
||||
|
||||
# Default test suffixes.
|
||||
config.suffixes = ['.c', '.cpp', '.m', '.mm']
|
||||
|
|
Loading…
Reference in New Issue