Skip to content

Commit

Permalink
Disabel musl tests and and more timeouts
Browse files Browse the repository at this point in the history
Work done for #196
  • Loading branch information
atruskie committed Mar 29, 2020
1 parent 50fe449 commit 3381ee9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,12 @@ private void TestAnalysisCoordinatorPaths(SaveBehavior wav, bool unique, Directo

// complete
dummyAnalyzer.Pump(false);
task.Wait(10.0.Seconds());
do
{
task.Wait(1.0.Seconds());
dummyAnalyzer.Pump(false);
}
while (!task.IsCompleted);

this.AssertFilesAreAsExpected(4, states[4], paths);

Expand Down
4 changes: 2 additions & 2 deletions tests/Acoustics.Test/AnalysisPrograms/MainEntryTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ public async Task DefaultHelpWorks(string rid)
[DataRow(WinX64)]
[DataRow(OsxX64)]
[DataRow(LinuxX64)]
[DataRow(LinuxMuslX64)]

//[DataRow(LinuxMuslX64)]
//[DataRow(LinuxArm)]
//[DataRow(LinuxArm64)]
//[DataRow(WinArm64)]
Expand All @@ -94,8 +94,8 @@ public async Task DefaultVersionWorks(string rid)
[DataRow(WinX64)]
[DataRow(OsxX64)]
[DataRow(LinuxX64)]
[DataRow(LinuxMuslX64)]

//[DataRow(LinuxMuslX64)]
//[DataRow(LinuxArm)]
//[DataRow(LinuxArm64)]
//[DataRow(WinArm64)]
Expand Down
3 changes: 2 additions & 1 deletion tests/Acoustics.Test/TestHelpers/DummyAnalyzer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ public void Pump(bool wait = true)
do
{
Task.Delay(100).Wait();
} while (this.waitingFor == null);
}
while (this.waitingFor == null);
}
}

Expand Down

0 comments on commit 3381ee9

Please sign in to comment.