Skip to content

Commit cc671a8

Browse files
authored
Unskip run-file tests (#50009)
1 parent 3cfcd87 commit cc671a8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/dotnet.Tests/CommandTests/Run/RunFileTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ public void FilePath(string? path, bool differentCasing)
150150
/// <summary>
151151
/// <c>dotnet file.cs</c> is equivalent to <c>dotnet run file.cs</c>.
152152
/// </summary>
153-
[Fact(Skip = "Waiting for VMR codeflow from runtime: https://github.com/dotnet/dotnet/pull/1563")]
153+
[Fact]
154154
public void FilePath_WithoutRun()
155155
{
156156
var testInstance = _testAssetsManager.CreateTestDirectory();
@@ -292,7 +292,7 @@ public void FilePath_AsProjectArgument()
292292
/// <summary>
293293
/// Even if there is a file-based app <c>./build</c>, <c>dotnet build</c> should not execute that.
294294
/// </summary>
295-
[Theory(Skip="Waiting for VMR codeflow from runtime: https://github.com/dotnet/dotnet/pull/1563")]
295+
[Theory]
296296
// error MSB1003: Specify a project or solution file. The current working directory does not contain a project or solution file.
297297
[InlineData("build", "MSB1003")]
298298
// dotnet watch: Could not find a MSBuild project file in '...'. Specify which project to use with the --project option.
@@ -363,7 +363,7 @@ public void Precedence_Dll(string arg)
363363

364364
// https://github.com/dotnet/sdk/issues/49665
365365
// Failed to load /private/tmp/helix/working/B3F609DC/p/d/shared/Microsoft.NETCore.App/9.0.0/libhostpolicy.dylib, error: dlopen(/private/tmp/helix/working/B3F609DC/p/d/shared/Microsoft.NETCore.App/9.0.0/libhostpolicy.dylib, 0x0001): tried: '/private/tmp/helix/working/B3F609DC/p/d/shared/Microsoft.NETCore.App/9.0.0/libhostpolicy.dylib' (mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64')), '/System/Volumes/Preboot/Cryptexes/OS/private/tmp/helix/working/B3F609DC/p/d/shared/Microsoft.NETCore.App/9.0.0/libhostpolicy.dylib' (no such file), '/private/tmp/helix/working/B3F609DC/p/d/shared/Microsoft.NETCore.App/9.0.0/libhostpolicy.dylib' (mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64'))
366-
[PlatformSpecificFact(TestPlatforms.Any & ~TestPlatforms.OSX, Skip = " Waiting for VMR codeflow from runtime: https://github.com/dotnet/dotnet/pull/1563")]
366+
[PlatformSpecificFact(TestPlatforms.Any & ~TestPlatforms.OSX)]
367367
public void Precedence_NuGetTool()
368368
{
369369
var testInstance = _testAssetsManager.CreateTestDirectory();
@@ -522,7 +522,7 @@ Hello from App
522522
""");
523523
}
524524

525-
[Fact(Skip = " Waiting for VMR codeflow from runtime: https://github.com/dotnet/dotnet/pull/1563")]
525+
[Fact]
526526
public void ProjectInCurrentDirectory_NoRunVerb()
527527
{
528528
var testInstance = _testAssetsManager.CreateTestDirectory();

0 commit comments

Comments
 (0)