Skip to content

Commit

Permalink
[GR-54696] Skip LoomTest#testManyVirtualThreads and add a timeout for…
Browse files Browse the repository at this point in the history
… GitHub Actions jobs

PullRequest: graal/18033
  • Loading branch information
eregon committed Jun 15, 2024
2 parents c195351 + 9c52b3d commit c10d824
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ jobs:
build-graalvm-linux:
name: /${{ matrix.env.PRIMARY }} ${{ matrix.env.GATE_TAGS }} JDK${{ matrix.env.JDK_VERSION }}
runs-on: ubuntu-20.04
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -225,6 +226,7 @@ jobs:
build-graalvm-windows:
name: /substratevm on Windows
runs-on: windows-2022
timeout-minutes: 60
env:
MX_PYTHON: 'python'
steps:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
import org.graalvm.polyglot.PolyglotException;
import org.graalvm.polyglot.Value;
import org.junit.Assume;
import org.junit.Ignore;
import org.junit.Test;

import java.io.ByteArrayOutputStream;
Expand Down Expand Up @@ -77,6 +78,7 @@ public void testEmbedderVirtualThread() throws Throwable {
}
}

@Ignore("GR-54696 too slow and can hang")
@Test
public void testManyVirtualThreads() throws Throwable {
Assume.assumeTrue(canCreateVirtualThreads() && !TruffleOptions.AOT);
Expand Down

0 comments on commit c10d824

Please sign in to comment.