From 83f64329b1fa4e58729988c0fd9fc4629c0cd47a Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Sun, 11 Nov 2018 21:12:07 -0500 Subject: [PATCH] Don't try to use test-css command in CI. --- etc/ci/check_intermittents.sh | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/etc/ci/check_intermittents.sh b/etc/ci/check_intermittents.sh index 0ba915e4a86..33b001a59ff 100755 --- a/etc/ci/check_intermittents.sh +++ b/etc/ci/check_intermittents.sh @@ -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-${test_type}" \ + --release \ + --log-raw - \ + --repeat "${REPEAT_COUNT}" \ + "${test_name}" \ + > intermittents.log \ + < /dev/null +done < "etc/ci/former_intermittents_wpt.txt"