File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
java/FMU-proxy/fmu-proxy/src/test/kotlin/no/ntnu/ihb/fmuproxy Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ import org.junit.jupiter.api.AfterAll
20
20
import org.junit.jupiter.api.Assertions
21
21
import org.junit.jupiter.api.Test
22
22
import org.junit.jupiter.api.TestInstance
23
+ import org.junit.jupiter.api.condition.DisabledOnOs
23
24
import org.junit.jupiter.api.condition.OS
24
25
import org.slf4j.Logger
25
26
import org.slf4j.LoggerFactory
@@ -89,11 +90,12 @@ class Benchmark {
89
90
}
90
91
91
92
@Test
93
+ @DisabledOnOs(OS .LINUX )
92
94
fun measureTimeThriftServlet () {
93
95
94
96
disableLog4jLoggers()
95
97
96
- Assertions .assertTimeout(testTimeout.multipliedBy( 2 ) ) {
98
+ Assertions .assertTimeout(testTimeout) {
97
99
ThriftFmuServlet ().use { server ->
98
100
server.addFmu(fmu)
99
101
val port = server.start()
You can’t perform that action at this time.
0 commit comments