Skip to content

Commit 50509a9

Browse files
authored
Merge pull request #35669 from apple/disable-cmark-tests-by-default
Disable CMark tests by default
2 parents 9bbb019 + 9a336f2 commit 50509a9

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

utils/build-script-impl

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -243,12 +243,16 @@ components=(
243243
xctest
244244
)
245245
for component in ${components[@]} ; do
246+
component_skip_test_default=""
247+
if [[ "${component}" == "cmark" ]]; then
248+
component_skip_test_default="1"
249+
fi
246250
KNOWN_SETTINGS+=(
247-
${component}-build-type "Debug" "the build variant for ${component}"
248-
${component}-cmake-options "" "CMake options used for ${component}"
249-
skip-build-${component} "" "set to skip building ${component}"
250-
skip-test-${component} "" "set to skip testing ${component}"
251-
install-${component} "" "whether to install ${component}"
251+
${component}-build-type "Debug" "the build variant for ${component}"
252+
${component}-cmake-options "" "CMake options used for ${component}"
253+
skip-build-${component} "" "set to skip building ${component}"
254+
skip-test-${component} "${component_skip_test_default}" "set to skip testing ${component}"
255+
install-${component} "" "whether to install ${component}"
252256
)
253257
done
254258

0 commit comments

Comments
 (0)