Merge pull request #1658 from test262-automation/javascriptcore-test262-automation-export-4314e2cab

Import test changes from JavaScriptCore
This commit is contained in:
Leo Balter 2018-07-30 14:24:28 -04:00 committed by GitHub
commit ead09a5080
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 41 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{
"sourceRevisionAtLastExport": "00228d3ccc",
"targetRevisionAtLastExport": "4314e2cab",
"sourceRevisionAtLastExport": "5895364ed5",
"targetRevisionAtLastExport": "df1fc484e",
"curatedFiles": {}
}

View File

@ -0,0 +1,39 @@
function shouldBe(actual, expected)
{
if (actual !== expected)
throw new Error('bad value: ' + actual);
}
noInline(shouldBe);
function test1(array)
{
for (var i = 0; i < 5; ++i) {
array[0] = array[0] + 1;
}
return array;
}
noInline(test1);
function test2(array)
{
for (var i = 0; i < 5; ++i) {
array[0] = array[0] + 1;
}
return array;
}
noInline(test2);
function test3(array)
{
for (var i = 0; i < 5; ++i) {
array[0] = array[0] + 1;
}
return array;
}
noInline(test3);
for (var i = 0; i < 1e5; ++i) {
shouldBe(String(test1([0, 1, 2, 3, 4])), `5,1,2,3,4`);
shouldBe(String(test2([0.1, 1.1, 2.1, 3.1, 4.1])), `5.1,1.1,2.1,3.1,4.1`);
shouldBe(String(test3(['C', 'o', 'c', 'o', 'a'])), `C11111,o,c,o,a`);
}