Skip to content

Commit de91941

Browse files
committed
disabled transient ProfileTest
1 parent f518cd4 commit de91941

File tree

1 file changed

+3
-3
lines changed
  • graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/test/runtime

1 file changed

+3
-3
lines changed

graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/test/runtime/ProfileTests.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141
package com.oracle.graal.python.test.runtime;
4242

4343
import org.junit.Before;
44-
import org.junit.Test;
4544

4645
import com.oracle.graal.python.test.PythonTests;
46+
import org.junit.Ignore;
4747

4848
import java.io.ByteArrayOutputStream;
4949
import java.io.PrintStream;
@@ -57,7 +57,7 @@ public void ensureBytecode() {
5757
PythonTests.skipOnLegacyASTInterpreter();
5858
}
5959

60-
@Test
60+
@Ignore("due to GR-40923")
6161
public void profileYield() {
6262
String source = "import sys\n" +
6363
"def f(frame, event, arg): print(frame, event, arg)\n" +
@@ -72,7 +72,7 @@ public void profileYield() {
7272
"<module>> return None\n", source);
7373
}
7474

75-
@Test
75+
@Ignore("due to GR-40923")
7676
public void profileException() {
7777
String source = "import sys\n" +
7878
"def f(frame, event, arg): print(frame, event, arg)\n" +

0 commit comments

Comments
 (0)