1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
Description: skip some reruns:
- reading files from classpath does not work correctly with the reusable test
jar
- also some issues with the reusable test jar and netty tests
.
To run into these problems, build the package in an environment with 1 CPU.
Author: Pierre Gruet <pgt@debian.org>
Forwarded: no
Last-Update: 2024-09-22
--- a/sshd-mina/pom.xml
+++ b/sshd-mina/pom.xml
@@ -115,6 +115,7 @@
<exclude>**/PortForwardingWithOpenSshTest.java</exclude>
<exclude>**/StrictKexInteroperabilityTest.java</exclude>
<!-- reading files from classpath doesn't work correctly w/ reusable test jar -->
+ <exclude>**/AgentTest.java</exclude>
<exclude>**/OpenSSHCertificateTest.java</exclude>
<!-- A MinaServiceFactory cannot be instantiated with a mock CloseableExecutorService. -->
<exclude>**/DefaultIoServiceFactoryFactoryTest.java</exclude>
--- a/sshd-netty/pom.xml
+++ b/sshd-netty/pom.xml
@@ -131,9 +131,12 @@
<exclude>**/SessionReKeyHostKeyExchangeTest.java</exclude>
<exclude>**/HostBoundPubKeyAuthTest.java</exclude>
<exclude>**/OpenSshCipherTest.java</exclude>
+ <exclude>**/PortForwardingTest.java</exclude>
<exclude>**/PortForwardingWithOpenSshTest.java</exclude>
+ <exclude>**/ProxyTest.java</exclude>
<exclude>**/StrictKexInteroperabilityTest.java</exclude>
<!-- reading files from classpath doesn't work correctly w/ reusable test jar -->
+ <exclude>**/AgentTest.java</exclude>
<exclude>**/OpenSSHCertificateTest.java</exclude>
</excludes>
<!-- No need to re-run core tests that do not involve session creation -->
|