gecko-dev/servo/etc/ci/check_intermittents.sh
Michael Howell 5637a89704 servo: Merge #12629 - Intermittents (from notriddle:intermittents); r=aneeshusa
We probably want to have Buildbot run that script.

---

- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy` does not report any errors
- [X] These changes fix #12435, #11574, and #11561
- [X] These changes do not require tests because reasons

Source-Repo: https://github.com/servo/servo
Source-Revision: 944cbbff8ba75b0fc493222923137be35c701aca

--HG--
rename : servo/python/tidy/servo_tidy_tests/test_ignored/whee/foo/bar.rs => servo/etc/ci/former_intermittents_wpt.txt
2016-08-09 23:28:17 -05:00

25 lines
663 B
Bash
Executable File

#!/usr/bin/env bash
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
set -o errexit
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