Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

Commit

Permalink
deps: update ChakraCore to chakra-core/ChakraCore@1906b50e90
Browse files Browse the repository at this point in the history
[MERGE #5521 @kfukuda2] Fixing broken build for ChakraFull

Merge pull request #5521 from kfukuda2:testFix

Reviewed-By: chakrabot <chakrabot@users.noreply.github.com>
  • Loading branch information
Kenji Fukuda authored and kfarnung committed Aug 4, 2018
1 parent b8c716e commit 9672cb1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deps/chakrashim/core/test/Basics/Labels.js
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ var tests = [
name : "Label tests with keywords as labels",
body : function ()
{
testModuleScript("await: for(let i = 0; i < 3; i++){break await;}","", shouldFail=true)
testModuleScript("await: for(let i = 0; i < 3; i++){break await;}", "'await' expression not allowed in this context", shouldFail=true)
assert.doesNotThrow(() => eval(strictMode + "await: for(let i = 0; i < 3; i++){break await;}"), "Await as label should only be an error when in a module")
assert.doesNotThrow(() => eval(strictMode + testAwaitAsLabelOutsideAsyncFnc), "'await' should be allowed as label outside of async functions, even in strict mode.")
assert.throws(() => eval(strictMode + testAwaitAsLabelInsideAsyncFnc), SyntaxError, "Expected 'await' label in async function to be a syntax error.", "Use of 'await' as label in async function is not allowed.");
Expand Down
2 changes: 1 addition & 1 deletion deps/chakrashim/core/test/Basics/rlexe.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
<test>
<default>
<files>Labels.js</files>
<compile-flags>-args summary -endargs</compile-flags>
<compile-flags>-MuteHostErrorMsg -args summary -endargs</compile-flags>
</default>
</test>
<test>
Expand Down
2 changes: 1 addition & 1 deletion deps/chakrashim/core/test/typedarray/rlexe.xml
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ Below test fails with difference in space. Investigate the cause and re-enable t
<default>
<files>Uint8ClampedArray.js</files>
<baseline>Uint8ClampedArray_es6.baseline</baseline>
<tags>typedarray</tags>
<tags>typedarray,exclude_jshost</tags> <!-->Disabled jshost, created issue #5520<!-->
</default>
</test>
<test>
Expand Down

0 comments on commit 9672cb1

Please sign in to comment.