summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug763039.js
blob: dcd8df564acb6d1dacc87f43b2ab88b01b3c7329 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Binary: cache/js-dbg-32-5cfb73435e06-linux
// Flags: --ion-eager
//
var actual = '';
function TestCase(n, d, e, a) {
  this.reason = '';
}
function inSection(x) {}
function reportCompare (expected, actual, description) {
  var testcase = new TestCase("unknown-test-name", description, expected, actual);
  testcase.reason = output;
}
var lfcode = new Array();
lfcode.push("4");
lfcode.push("function START(summary) {\
}\
function TEST(section, expected, actual) {\
    return reportCompare(expected, actual, inSection(section) + SUMMARY);\
}\
var expect = (1);\
TEST(1,1 << this <  assertEq++ < this, actual);\
");
lfcode.push("\
gczeal(4);\
data >>>=  RunSingleBenchmark(data);\
");
lfcode.push("4");
lfcode.push("\
var BUGNUMBER = 345855;\
var summary = 'Blank yield expressions are not syntax errors';\
test();\
function test() {\
  try  {\
    eval('(function() {x = 12 + yield;})');\
  }  catch(ex)  {}\
  try  { eval('(function() {x = 12 + yield 42})'); }  catch(ex)  {\
    status = inSection(4);\
  }\
  try  {\
    eval('(function() {x = 12 + (yield);})');\
  }  catch(ex)  {  }\
  try  {\
    eval('(function () {foo((yield))})');\
  }  catch(ex)  {  }\
  try  {\
    eval('(function() {x = 12 + (yield 42)})');\
  }  catch(ex)  {  }\
  reportCompare(expect, actual, summary + ': function() {x = 12 + (yield 42)}');\
}\
");
while (true) {
	var file = lfcode.shift(); if (file == undefined) { break; }
                loadFile(file);
}
function loadFile(lfVarx) {
	try {
		if (lfVarx.substr(-3) == ".js") {
		} else if (!isNaN(lfVarx)) {
			lfRunTypeId = lfVarx;
		} else {
			switch (lfRunTypeId) {
				case 1: eval(read(lfVarx)); break;
				default: evaluate(lfVarx);
			}
		}
	} catch (lfVare) {
		print(lfVare);
	}
}