mirror of
https://github.com/servo/servo.git
synced 2025-07-24 15:50:21 +01:00
Make update_manifest.sh more verbose.
This commit is contained in:
parent
49376c9e54
commit
398a15e6e0
1 changed files with 5 additions and 1 deletions
|
@ -8,13 +8,17 @@ set -o errexit
|
||||||
set -o nounset
|
set -o nounset
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
|
echo "About to update manifest."
|
||||||
|
|
||||||
# We shouldn't need any binary at all to update the manifests.
|
# We shouldn't need any binary at all to update the manifests.
|
||||||
# Adding "SKIP_TESTS" to skip tests, it doesn't really skip the tests.
|
# Adding "SKIP_TESTS" to skip tests, it doesn't really skip the tests.
|
||||||
# It will run "run_wpt" with "'test_list': ['SKIP_TESTS']",
|
# It will run "run_wpt" with "'test_list': ['SKIP_TESTS']",
|
||||||
# and then pass it into wptrunner, which won't be able to find any tests named
|
# and then pass it into wptrunner, which won't be able to find any tests named
|
||||||
# "SKIP_TESTS", and thus won't run any.
|
# "SKIP_TESTS", and thus won't run any.
|
||||||
# Adding "--binary=" to skip looking for a compiled servo binary.
|
# Adding "--binary=" to skip looking for a compiled servo binary.
|
||||||
./mach test-wpt --manifest-update --binary= SKIP_TESTS > /dev/null
|
./mach test-wpt --manifest-update --binary= SKIP_TESTS
|
||||||
|
|
||||||
|
echo "Updated manifest; about to check if any changes were made to it."
|
||||||
|
|
||||||
diff="$(git diff -- tests/*/MANIFEST.json)"
|
diff="$(git diff -- tests/*/MANIFEST.json)"
|
||||||
echo "${diff}"
|
echo "${diff}"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue