-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix errors reported by GitHub Semmle code analysis tools. #6374
Conversation
https://lgtm.com/projects/g/dotnet/orleans/?mode=list&severity=error Fix errors reported by GitHub Semmle code analysis tools: - Missing X-Frame-Options HTTP header - https://lgtm.com/rules/1506102236348/ - Using a package with a known vulnerability - https://lgtm.com/rules/1506697777412/ - Possible loss of precision - https://lgtm.com/rules/1506096756023/ Ensure Test.cmd clears the Platform environment variable (same as in Build.cmd) in case it is run on separate cmd session (eg Appveyor builds) -- x-ref: issue dotnet#69 Remove unused $outDir param from Parallel-Tests.ps1 script. Fix a few minor comment typos in scripts.
The first run of the Functional test suite failed with what looks like a system clock resolution / rounding edge case glitch in test case Tester.AzureUtils.Persistence.PersistenceProviderTests_Local.PersistenceProvider_Memory_FixedLatency_WriteRead
Hopefully rerunning the test will get a better result next time! |
There are also another 222 Warnings and 34 Recommendations reported by Semmle code analysis, if anyone wants to lend a hand with some code cleanup work. |
Fixed: PR #6378 addresses the unrelated test glitch found when running the Functional test suite for this PR. |
Limit parallel test jobs to max 4, or NUMBER_OF_PROCESSORS if that is less.
Thank you, Jorgen! |
(cherry picked from commit 0a89bf3)
(cherry picked from commit 0a89bf3)
https://lgtm.com/projects/g/dotnet/orleans/?mode=list&severity=error
Fix errors reported by GitHub Semmle code analysis tools:
Ensure Test.cmd clears the
Platform
environment variable (same as in Build.cmd) in case it is run on separate cmd session (eg Appveyor builds)Remove unused $outDir param from Parallel-Tests.ps1 script.