@@ -82,7 +82,8 @@ def test_by_default_no_cmake_options(self):
82
82
toolchain = self .toolchain ,
83
83
source_dir = '/path/to/src' ,
84
84
build_dir = '/path/to/build' )
85
- self .assertEqual (swift .cmake_options , ['-DCMAKE_EXPORT_COMPILE_COMMANDS=TRUE' ])
85
+ self .assertEqual (swift .cmake_options , [
86
+ '-DCMAKE_EXPORT_COMPILE_COMMANDS=TRUE' ])
86
87
87
88
def test_swift_runtime_tsan (self ):
88
89
self .args .enable_tsan_runtime = True
@@ -240,7 +241,7 @@ def test_benchmark_flags(self):
240
241
self .assertEqual (
241
242
['-DSWIFT_BENCHMARK_NUM_ONONE_ITERATIONS=20' ,
242
243
'-DSWIFT_BENCHMARK_NUM_O_ITERATIONS=3' ],
243
- [x for x in swift .cmake_options if 'SWIFT_BENCHMARK_NUM' in x ])
244
+ [x for x in swift .cmake_options if 'SWIFT_BENCHMARK_NUM' in x ])
244
245
self .args .benchmark_num_onone_iterations = 3
245
246
246
247
self .args .benchmark_num_o_iterations = 30
@@ -276,4 +277,5 @@ def test_sil_ownership_flags(self):
276
277
build_dir = '/path/to/build' )
277
278
self .assertEqual (
278
279
['-DSWIFT_STDLIB_ENABLE_SIL_OWNERSHIP=TRUE' ],
279
- [x for x in swift .cmake_options if 'SWIFT_STDLIB_ENABLE_SIL_OWNERSHIP' in x ])
280
+ [x for x in swift .cmake_options
281
+ if 'SWIFT_STDLIB_ENABLE_SIL_OWNERSHIP' in x ])
0 commit comments