Bug 1382964 - Part 5: Restore allowed heap write hazards to 3. r=xidorn draft
authorCameron McCormack <cam@mcc.id.au>
Fri, 21 Jul 2017 16:44:23 +0800
changeset 613895 c796c1a75c7864d2cd926af694c332d00e9574dd
parent 613894 aa75e92ab9e7ba6d820886debbd4f860c1d54642
child 638740 7d8f0df90489dd2430c860ce6918d4bb35452326
push id69874
push userbmo:cam@mcc.id.au
push dateSun, 23 Jul 2017 08:00:54 +0000
reviewersxidorn
bugs1382964
milestone56.0a1
Bug 1382964 - Part 5: Restore allowed heap write hazards to 3. r=xidorn MozReview-Commit-ID: LEJh0Gi2ltf
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=4
+    NUM_ALLOWED_WRITE_HAZARDS=3
     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
     )
 }