Bug 1348173 - fix stylo bustage. draft
authorJeremy Chen <jeremychen@mozilla.com>
Tue, 25 Apr 2017 14:50:44 +0800
changeset 567524 dbf3106d13260901f201d7f078e02b98fb8baebc
parent 567523 c81a77983d54f50ba92c121183e4a3a836b29800
child 625680 dbf7fc4ed7ce3f4bc753ab9a0a5a69d348400612
push id55606
push userjichen@mozilla.com
push dateTue, 25 Apr 2017 06:51:13 +0000
bugs1348173
milestone55.0a1
Bug 1348173 - fix stylo bustage. MozReview-Commit-ID: KW6AddyoxwR
taskcluster/scripts/builder/hazard-analysis.sh
--- a/taskcluster/scripts/builder/hazard-analysis.sh
+++ b/taskcluster/scripts/builder/hazard-analysis.sh
@@ -146,16 +146,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=7
     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
     )
 }