Skip to content

Commit b371012

Browse files
committed
Disable bunch of python test
1 parent f71453a commit b371012

3 files changed

Lines changed: 8 additions & 0 deletions

File tree

usvm-python/src/test/kotlin/org/usvm/samples/IllegalOperationTest.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package org.usvm.samples
22

3+
import org.junit.jupiter.api.Disabled
34
import org.junit.jupiter.api.Test
45
import org.junit.jupiter.api.assertThrows
56
import org.usvm.machine.interpreters.concrete.IllegalOperationException
@@ -9,6 +10,7 @@ import org.usvm.test.util.checkers.ignoreNumberOfAnalysisResults
910

1011
class IllegalOperationTest : PythonTestRunnerForStructuredProgram("SimpleExample") {
1112
@Test
13+
@Disabled("Disabled until fix") // todo: fix python test
1214
fun testIllegalOperation() {
1315
assertThrows<IllegalOperationException> {
1416
check0(
@@ -21,6 +23,7 @@ class IllegalOperationTest : PythonTestRunnerForStructuredProgram("SimpleExample
2123
}
2224

2325
@Test
26+
@Disabled("Disabled until fix") // todo: fix python test
2427
fun testSettraceUsage() {
2528
assertThrows<IllegalOperationException> {
2629
check0(
@@ -33,6 +36,7 @@ class IllegalOperationTest : PythonTestRunnerForStructuredProgram("SimpleExample
3336
}
3437

3538
@Test
39+
@Disabled("Disabled until fix") // todo: fix python test
3640
fun testRemoveTracing() {
3741
assertThrows<IllegalOperationException> {
3842
check0(

usvm-python/src/test/kotlin/org/usvm/samples/ListsTest.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package org.usvm.samples
22

3+
import org.junit.jupiter.api.Disabled
34
import org.junit.jupiter.api.Test
45
import org.usvm.UMachineOptions
56
import org.usvm.language.PyUnpinnedCallable
@@ -509,6 +510,7 @@ class ListsTest : PythonTestRunnerForPrimitiveProgram(
509510
}
510511

511512
@Test
513+
@Disabled("Disabled until fix") // todo: fix python test
512514
fun testUseSort() {
513515
val oldOptions = options
514516
options = UMachineOptions(stepLimit = 100U)

usvm-python/src/test/kotlin/org/usvm/samples/PathDiversionTest.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package org.usvm.samples
22

3+
import org.junit.jupiter.api.Disabled
34
import org.junit.jupiter.api.Test
45
import org.junit.jupiter.api.assertThrows
56
import org.usvm.machine.interpreters.symbolic.operations.tracing.PathDiversionException
@@ -23,6 +24,7 @@ class PathDiversionTest : PythonTestRunnerForPrimitiveProgram("PathDiversionExam
2324
)
2425
}
2526
@Test
27+
@Disabled("Disabled until fix") // todo: fix python test
2628
fun testForbidPathDiversion() {
2729
allowPathDiversions = false
2830
assertThrows<PathDiversionException> {

0 commit comments

Comments
 (0)