Skip to content

Commit 10d73de

Browse files
authored
disable line tests in clion integration tests (#484)
* disable line tests * fix: edt exception after failed test
1 parent d43a5cf commit 10d73de

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

clion-plugin/src/test/kotlin/org/utbot/cpp/clion/plugin/BaseGenerationTestCase.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ abstract class BaseGenerationTestCase {
118118
@AfterAll
119119
fun tearDownAll() {
120120
logger.info("tearDownAll of BaseGenerationTest is called")
121-
waitForRequestsToFinish()
122121
fixture.tearDown()
123122
logger.info("tearDownAll of BaseGenerationTest has finished!")
124123
}

clion-plugin/src/test/kotlin/org/utbot/cpp/clion/plugin/tests/GenerateForLineTest.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package org.utbot.cpp.clion.plugin.tests
22

33
import com.intellij.openapi.editor.Editor
4+
import org.junit.jupiter.api.Disabled
45
import org.junit.jupiter.api.Test
56
import org.utbot.cpp.clion.plugin.BaseGenerationTestCase
67
import org.utbot.cpp.clion.plugin.Clang
@@ -11,6 +12,7 @@ import org.utbot.cpp.clion.plugin.assertFileOrDirExists
1112
import org.utbot.cpp.clion.plugin.assertTestFilesExist
1213
import org.utbot.cpp.clion.plugin.settings.settings
1314

15+
@Disabled("Disabled as a flaky test until #483 is fixed")
1416
class GenerateForLineTest: BaseGenerationTestCase() {
1517
private val logger = setupLogger()
1618

0 commit comments

Comments
 (0)