File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -243,12 +243,16 @@ components=(
243
243
xctest
244
244
)
245
245
for component in ${components[@]} ; do
246
+ component_skip_test_default=" "
247
+ if [[ " ${component} " == " cmark" ]]; then
248
+ component_skip_test_default=" 1"
249
+ fi
246
250
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} "
252
256
)
253
257
done
254
258
You can’t perform that action at this time.
0 commit comments