Skip to content
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

Convert all tests under baseservices to the merged test infrastructure #91560

Merged
merged 31 commits into from
Oct 30, 2023
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
891eb5d
Remove unused args parameter from the Main method in 349379.cs
trylek Sep 1, 2023
fd7a035
Convert stackoverflowtester Main to individual test entrypoints
trylek Sep 1, 2023
4b33c72
Don't complain about Exe type for test components
trylek Sep 1, 2023
607fd21
Make dynamicmethodliveness and ParallelCrash merge-friendly
trylek Sep 1, 2023
5780f17
Adjust the Tier1StackTrace test to be tolerant to merged wrappers
trylek Sep 1, 2023
8b7b8e5
Convert baseservices/exceptions to merged mode
trylek Sep 1, 2023
c91f40a
Remove constant return value 100 from the test test448035
trylek Sep 1, 2023
3dcf689
Make UnsafeAccessorTests owner class public
trylek Sep 1, 2023
561ccc8
Make methods in RuntimeConfiguration/TestConfig public
trylek Sep 1, 2023
bd673ec
Make TieredCompilation/BasicTest public
trylek Sep 1, 2023
d19703a
Remove unused exit code of runmoduleconstructor
trylek Sep 1, 2023
fe3a07a
Remove unused exit code of RuntimeHelperTests
trylek Sep 1, 2023
32da5e8
Fix visibility in multidimarray/enum test
trylek Sep 1, 2023
e340f7e
Fix visibility in TestCallingConventions test
trylek Sep 1, 2023
2fe3767
Fix visibility in CriticalFinalizer test
trylek Sep 1, 2023
e0bacc0
Simplify RuntimeConfiguration/TestConfig
trylek Sep 1, 2023
65d2a7a
Clean up TieredCompilation tests
trylek Sep 1, 2023
6897201
Convert istypeequivalent to use ConditionalFact clauses
trylek Sep 1, 2023
c72d876
Fix visibility in RuntimeHelpersTests
trylek Sep 1, 2023
573730a
Add CoreCLRTestLibrary as a dependency of istypeequivalent
trylek Sep 1, 2023
c43b1d7
Fix merged behavior of test448035
trylek Sep 1, 2023
c2d27d4
Fix entrypoint in 305155
trylek Sep 1, 2023
e41e8f2
Modify TestConfig to use a separate TestConfigTester app
trylek Sep 3, 2023
cbf2417
Additional fixes to TestConfig / TestConfigTester
trylek Sep 4, 2023
d30f9c6
Mechanically merge all remaining tests under baseservices
trylek Sep 4, 2023
02ffa17
Fix BasicTestWithMcj, address initial Mark's PR feedback
trylek Sep 5, 2023
c9854b2
Remove superfluous OutputType=Library annotations per Marks' PR feedback
trylek Sep 5, 2023
02e17cf
Fix the baseservices/exceptions/unhandled test
trylek Sep 5, 2023
be2a499
Fix stackoverflow3 and unhandled exception tests
trylek Oct 12, 2023
2d85c95
Remove unnecessary check from Directory.Build.targets
trylek Oct 12, 2023
38e77a4
Fix stackoverflowtester per Mark's PR feedback
trylek Oct 13, 2023
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
Prev Previous commit
Next Next commit
Fix visibility in RuntimeHelpersTests
  • Loading branch information
trylek committed Oct 29, 2023
commit c72d876f9fe1960454d14c164c97b5e20608c135
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
using System;
using Xunit;

class RuntimeHelpersTests
public class RuntimeHelpersTests
{
[Fact]
static void TestEntryPoint()
public static void TestEntryPoint()
{
ExecuteCodeWithGuaranteedCleanupTest.Run();
}
Expand Down