[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:
Dan Liew 2020-02-19 13:23:26 -08:00
parent c3478eff7a
commit ddd2257f48
1 changed files with 1 additions and 1 deletions

View File

@ -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']