reduce false positives from fuzzing (#3417)

This commit is contained in:
Alex Lam S.L
2019-05-16 16:15:03 +08:00
committed by GitHub
parent a21c348d93
commit 8939a36bc7
2 changed files with 40 additions and 24 deletions

View File

@@ -66,3 +66,17 @@ toplevel_Infinity_NaN_undefined: {
}
expect_stdout: "foo 42 null"
}
log_global: {
input: {
console.log(function() {
return this;
}());
}
expect: {
console.log(function() {
return this;
}());
}
expect_stdout: "[object global]"
}