Bug 1384258 - Ease the hazard tolerance for stylo. r?xidorn draft
authorRalph Giles <giles@mozilla.com>
Wed, 26 Jul 2017 13:04:57 -0700
changeset 616167 0d735758919ba265cf95a48a8f3e3ae68b9f4300
parent 616166 34296ad9a87bebc58886c8b6dec1fc9461f64c6e
child 639409 5ccf4aefb76f8a5538f02e1f4679cf0a5a79d827
push id70616
push userbmo:giles@thaumas.net
push dateWed, 26 Jul 2017 20:09:12 +0000
reviewersxidorn
bugs1384258, 1384625
milestone56.0a1
Bug 1384258 - Ease the hazard tolerance for stylo. r?xidorn Allow an extra heap write hazard introduced by enabling stylo in default builds until it can be addressed. See bug 1384625. MozReview-Commit-ID: 2N3z6FVHa0G
taskcluster/scripts/builder/hazard-analysis.sh
--- a/taskcluster/scripts/builder/hazard-analysis.sh
+++ b/taskcluster/scripts/builder/hazard-analysis.sh
@@ -155,16 +155,16 @@ function check_hazards () {
     echo "TinderboxPrint: heap write hazards<br/>$NUM_WRITE_HAZARDS"
 
     if [ $NUM_HAZARDS -gt 0 ]; then
         echo "TEST-UNEXPECTED-FAIL $NUM_HAZARDS rooting hazards detected" >&2
         echo "TinderboxPrint: documentation<br/><a href='https://wiki.mozilla.org/Javascript:Hazard_Builds#Diagnosing_a_rooting_hazards_failure'>static rooting hazard analysis failures</a>, visit \"Inspect Task\" link for hazard details"
         exit 1
     fi
 
-    NUM_ALLOWED_WRITE_HAZARDS=3
+    NUM_ALLOWED_WRITE_HAZARDS=4
     if [ $NUM_WRITE_HAZARDS -gt $NUM_ALLOWED_WRITE_HAZARDS ]; then
         echo "TEST-UNEXPECTED-FAIL $NUM_WRITE_HAZARDS heap write hazards detected out of $NUM_ALLOWED_WRITE_HAZARDS allowed" >&2
         echo "TinderboxPrint: documentation<br/><a href='https://wiki.mozilla.org/Javascript:Hazard_Builds#Diagnosing_a_heap_write_hazard_failure'>heap write hazard analysis failures</a>, visit \"Inspect Task\" link for hazard details"
         exit 1
     fi
     )
 }