Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions 17 test/tools/Modules/HelpersLanguage/HelpersLanguage.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,21 @@ function ShouldBeParseError
# https://github.com/dotnet/coreclr/issues/9745
#
if ($SkipInTravisFullBuild) {
## Report that we skipped the test and return
It "Parse error expected: <<$src>>" -Skip {}
## Report that we skipped the tests and return
## be sure to report the same number of tests
## it should have the same appearance as if the tests were run
Context "Parse error expected: <<$src>>" {
if ($SkipAndCheckRuntimeError)
{
It "error should happen at parse time, not at runtime" -Skip {}
}
It "Error count" -Skip { }
foreach($expectedError in $expectedErrors)
{
It "Error Id" -Skip { }
It "Error position" -Skip { }
}
}
return
}

Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.