Skip to content

Commit 5a4d290

Browse files
committed
[Test] Fix build system test by adding only_non_executable_test flag
1 parent 4e0acd3 commit 5a4d290

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

utils/swift_build_support/tests/test_host_specific_configuration.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ def test_should_allow_testing_only_non_executable_tests(self):
332332
self.assertIn('check-swift-macosx-x86_64',
333333
before.swift_test_run_targets)
334334

335-
args.only_executable_test = True
335+
args.only_non_executable_test = True
336336
after = HostSpecificConfiguration('macosx-x86_64', args)
337337
self.assertIn('check-swift-only_non_executable-macosx-x86_64',
338338
after.swift_test_run_targets)
@@ -637,6 +637,7 @@ def default_args(self):
637637
maccatalyst_ios_tests=False,
638638
long_test=False,
639639
only_executable_test=False,
640+
only_non_executable_test=False,
640641
stress_test=False,
641642
test_android=False,
642643
test_android_host=False,

0 commit comments

Comments
 (0)