Skip to content

Commit 4ee3644

Browse files
authored
Skip dotnet watch tests on arm (#23361)
1 parent d8a7ced commit 4ee3644

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

src/Tools/dotnet-watch/test/AppWithDepsTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ public AppWithDepsTests(ITestOutputHelper logger)
1919
_app = new AppWithDeps(logger);
2020
}
2121

22-
[Fact]
22+
[ConditionalFact]
23+
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/23360", Queues = "Windows.10.Arm64;Windows.10.Arm64.Open;Debian.9.Arm64;Debian.9.Arm64.Open;(Debian.9.Arm64.Open)[email protected]/dotnet-buildtools/prereqs:debian-9-helix-arm64v8-a12566d-20190807161036;(Debian.9.Arm64)[email protected]/dotnet-buildtools/prereqs:debian-9-helix-arm64v8-a12566d-20190807161036")]
2324
public async Task ChangeFileInDependency()
2425
{
2526
await _app.StartWatcherAsync();

src/Tools/dotnet-watch/test/GlobbingAppTests.cs

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@ public GlobbingAppTests(ITestOutputHelper logger)
2121
_app = new GlobbingApp(logger);
2222
}
2323

24-
[Theory]
24+
[ConditionalTheory]
2525
[InlineData(true)]
2626
[InlineData(false)]
27+
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/23360", Queues = "Debian.9.Arm64;Debian.9.Arm64.Open;(Debian.9.Arm64.Open)[email protected]/dotnet-buildtools/prereqs:debian-9-helix-arm64v8-a12566d-20190807161036;(Debian.9.Arm64)[email protected]/dotnet-buildtools/prereqs:debian-9-helix-arm64v8-a12566d-20190807161036")]
2728
public async Task ChangeCompiledFile(bool usePollingWatcher)
2829
{
2930
_app.UsePollingWatcher = usePollingWatcher;
@@ -41,7 +42,8 @@ public async Task ChangeCompiledFile(bool usePollingWatcher)
4142
Assert.Equal(2, types);
4243
}
4344

44-
[Fact]
45+
[ConditionalFact]
46+
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/23360", Queues = "Debian.9.Arm64;Debian.9.Arm64.Open;(Debian.9.Arm64.Open)[email protected]/dotnet-buildtools/prereqs:debian-9-helix-arm64v8-a12566d-20190807161036;(Debian.9.Arm64)[email protected]/dotnet-buildtools/prereqs:debian-9-helix-arm64v8-a12566d-20190807161036")]
4547
public async Task DeleteCompiledFile()
4648
{
4749
await _app.StartWatcherAsync();
@@ -57,7 +59,8 @@ public async Task DeleteCompiledFile()
5759
Assert.Equal(1, types);
5860
}
5961

60-
[Fact]
62+
[ConditionalFact]
63+
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/23360", Queues = "Debian.9.Arm64;Debian.9.Arm64.Open;(Debian.9.Arm64.Open)[email protected]/dotnet-buildtools/prereqs:debian-9-helix-arm64v8-a12566d-20190807161036;(Debian.9.Arm64)[email protected]/dotnet-buildtools/prereqs:debian-9-helix-arm64v8-a12566d-20190807161036")]
6164
public async Task DeleteSourceFolder()
6265
{
6366
await _app.StartWatcherAsync();
@@ -73,7 +76,8 @@ public async Task DeleteSourceFolder()
7376
Assert.Equal(1, types);
7477
}
7578

76-
[Fact]
79+
[ConditionalFact]
80+
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/23360", Queues = "Debian.9.Arm64;Debian.9.Arm64.Open;(Debian.9.Arm64.Open)[email protected]/dotnet-buildtools/prereqs:debian-9-helix-arm64v8-a12566d-20190807161036;(Debian.9.Arm64)[email protected]/dotnet-buildtools/prereqs:debian-9-helix-arm64v8-a12566d-20190807161036")]
7781
public async Task RenameCompiledFile()
7882
{
7983
await _app.StartWatcherAsync();

src/Tools/dotnet-watch/test/NoDepsAppTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ public NoDepsAppTests(ITestOutputHelper logger)
2323
_output = logger;
2424
}
2525

26-
[Fact]
26+
[ConditionalFact]
27+
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/23360", Queues = "Debian.9.Arm64;Debian.9.Arm64.Open;(Debian.9.Arm64.Open)[email protected]/dotnet-buildtools/prereqs:debian-9-helix-arm64v8-a12566d-20190807161036;(Debian.9.Arm64)[email protected]/dotnet-buildtools/prereqs:debian-9-helix-arm64v8-a12566d-20190807161036")]
2728
public async Task RestartProcessOnFileChange()
2829
{
2930
await _app.StartWatcherAsync(new[] { "--no-exit" });

0 commit comments

Comments
 (0)