File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
sqldev/src/test/java/org/utplsql/sqldev/test/runner Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 17
17
18
18
import org.junit.AfterClass
19
19
import org.junit.BeforeClass
20
+ import org.junit.Ignore
20
21
import org.junit.Test
21
22
import org.springframework.jdbc.BadSqlGrammarException
22
23
import org.springframework.jdbc.datasource.SingleConnectionDataSource
@@ -69,7 +70,8 @@ class UtplsqlRunnerTest extends AbstractJdbcTest {
69
70
}
70
71
}
71
72
72
- @Test
73
+ @Test
74
+ @Ignore
73
75
def void runSlowTests () {
74
76
var ds1 = new SingleConnectionDataSource ()
75
77
ds1. driverClassName = " oracle.jdbc.OracleDriver"
@@ -82,9 +84,9 @@ class UtplsqlRunnerTest extends AbstractJdbcTest {
82
84
ds2. username = dataSource. username
83
85
ds2. password = dataSource. password
84
86
var runner = new UtplsqlRunner (#[" :a" ], ds1. connection, ds2. connection)
85
- runner. runAsync
86
- runner. producerThread. join(20000 )
87
- runner. consumerThread. join(20000 )
87
+ runner. runTestAsync
88
+ runner. producerThread. join(200000 )
89
+ runner. consumerThread. join(200000 )
88
90
runner. dispose
89
91
}
90
92
You can’t perform that action at this time.
0 commit comments