Skip to content

Commit

Permalink
Blacklist .findScripts from differential testing as well.
Browse files Browse the repository at this point in the history
  • Loading branch information
nth10sd committed Feb 26, 2016
1 parent bfa8baa commit 669fb6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/jsfunfuzz/avoid-known-bugs.js
Expand Up @@ -51,6 +51,7 @@ function whatToTestSpidermonkeyTrunk(code)
&& code.indexOf(".environment") == -1 // see bug 1237464
&& code.indexOf(".onNewGlobalObject") == -1 // see bug 1238246
&& code.indexOf(".takeCensus") == -1 // see bug 1247863
&& code.indexOf(".findScripts") == -1 // see bug 1250863
&& code.indexOf("Object.seal") == -1 // bug 937922
&& code.indexOf("length") == -1 // bug 1027846
&& code.indexOf("preventExtensions") == -1 // bug 1085299
Expand All @@ -62,7 +63,6 @@ function whatToTestSpidermonkeyTrunk(code)
&& code.indexOf("Math.imul") == -1 // bug 1247880
&& code.indexOf("Float32Array") == -1 // bug 1248153
&& code.indexOf("Uint32Array") == -1 // bug 1248153
&& code.indexOf("majorGC") == -1 // bug 1250863
&& !( codeL.match(/\/.*[\u0000\u0080-\uffff]/)) // doesn't stay valid utf-8 after going through python (?)

};
Expand Down

0 comments on commit 669fb6c

Please sign in to comment.