File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
compiler-rt/test/ubsan_minimal Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -28,8 +28,12 @@ def build_invocation(compile_flags):
2828clang_ubsan_cxxflags = config .cxx_mode_flags + clang_ubsan_cflags
2929
3030# Define %clang_min_runtime and %clangxx_min_runtime substitutions to use in test RUN lines.
31- config .substitutions .append (("%clang_min_runtime " , build_invocation (clang_ubsan_cflags )))
32- config .substitutions .append (("%clangxx_min_runtime " , build_invocation (clang_ubsan_cxxflags )))
31+ config .substitutions .append (
32+ ("%clang_min_runtime " , build_invocation (clang_ubsan_cflags ))
33+ )
34+ config .substitutions .append (
35+ ("%clangxx_min_runtime " , build_invocation (clang_ubsan_cxxflags ))
36+ )
3337
3438# Default test suffixes.
3539config .suffixes = [".c" , ".cpp" ]
You can’t perform that action at this time.
0 commit comments