Auto merge of #22176 - servo:jdm-patch-20, r=KiChjang

Don't try to use test-css command in CI.

<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/22176)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2018-11-17 00:37:38 -05:00 committed by GitHub
commit 679fb36924
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,16 +9,14 @@ set -o nounset
set -o pipefail
REPEAT_COUNT=100
for test_type in wpt css; do
while read test_name; do
echo " - Checking ${test_name}"
./mach "test-${test_type}" \
--release \
--log-raw - \
--repeat "${REPEAT_COUNT}" \
"${test_name}" \
> intermittents.log \
< /dev/null
done < "etc/ci/former_intermittents_${test_type}.txt"
done
while read test_name; do
echo " - Checking ${test_name}"
./mach test-wpt \
--release \
--log-raw - \
--repeat "${REPEAT_COUNT}" \
"${test_name}" \
> intermittents.log \
< /dev/null
done < "etc/ci/former_intermittents_wpt.txt"