From 398a15e6e020a64cac7f7c95d93039c0ba98a040 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Mon, 9 Oct 2017 06:21:48 -0400 Subject: [PATCH] Make update_manifest.sh more verbose. --- etc/ci/manifest_changed.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/etc/ci/manifest_changed.sh b/etc/ci/manifest_changed.sh index 24fc9baec6c..b0eff206edf 100755 --- a/etc/ci/manifest_changed.sh +++ b/etc/ci/manifest_changed.sh @@ -8,13 +8,17 @@ set -o errexit set -o nounset set -o pipefail +echo "About to update manifest." + # 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. # 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 # "SKIP_TESTS", and thus won't run any. # 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)" echo "${diff}"