File: skip_reruns.patch

package info (click to toggle)
libmina-sshd-java 2.13.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,428 kB
  • sloc: java: 136,607; xml: 4,544; sh: 917; python: 239; makefile: 2
file content (35 lines) | stat: -rw-r--r-- 1,987 bytes parent folder | download | duplicates (2)
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 -->