1From 879ddb725823c78c9510cfd39786adb16f3726c8 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 16 Sep 2023 19:52:56 -0700
4Subject: [PATCH] cppignore.lnx: Ignore PKCS12 and testLaunch test
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9These tests fail on Linux
10
11There were 4 failures:
12 1: N7CppUnit10TestCallerI11ProcessTestEE.testLaunch
13    "rc == 3"
14    in "/usr/src/debug/poco/1.12.4-r0/Foundation/testsuite/src/ProcessTest.cpp", line 79
15 2: N7CppUnit10TestCallerI11ProcessTestEE.testLaunchRedirectIn
16    "rc == 100"
17    in "/usr/src/debug/poco/1.12.4-r0/Foundation/testsuite/src/ProcessTest.cpp", line 106
18 3: N7CppUnit10TestCallerI11ProcessTestEE.testLaunchRedirectOut
19    "s == "Hello, world!""
20    in "/usr/src/debug/poco/1.12.4-r0/Foundation/testsuite/src/ProcessTest.cpp", line 134
21 4: N7CppUnit10TestCallerI11ProcessTestEE.testLaunchEnv
22    "s == "test""
23    in "/usr/src/debug/poco/1.12.4-r0/Foundation/testsuite/src/ProcessTest.cpp", line 166
24
25 There were 4 errors:-
26   1: N7CppUnit10TestCallerI7EVPTestEE.testRSAEVPKeyFromPKCS12
27  │ │ "N4Poco17NotFoundExceptionE:
28  Not found: POCO_BASE"
29  │ │ in "<unknown>", line -1
30   2: N7CppUnit10TestCallerI19PKCS12ContainerTestEE.testFullPKCS12
31  │ │ "N4Poco17NotFoundExceptionE:
32  Not found: POCO_BASE"
33  │ │ in "<unknown>", line -1
34   3: N7CppUnit10TestCallerI19PKCS12ContainerTestEE.testCertsOnlyPKCS12
35  │ │ "N4Poco17NotFoundExceptionE:
36  Not found: POCO_BASE"
37  │ │ in "<unknown>", line -1
38   4: N7CppUnit10TestCallerI19PKCS12ContainerTestEE.testPEMReadWrite
39  │ │ "N4Poco17NotFoundExceptionE:
40  Not found: POCO_BASE"
41  │ │ in "<unknown>", line -1
42
43Upstream-Status: Inappropriate [OE specific]
44Signed-off-by: Khem Raj <raj.khem@gmail.com>
45Signed-off-by: Patrick Wicki <patrick.wicki@siemens.com>
46---
47 cppignore.lnx | 9 +++++++++
48 1 file changed, 9 insertions(+)
49
50diff --git a/cppignore.lnx b/cppignore.lnx
51index 2c2376526..65df4af08 100644
52--- a/cppignore.lnx
53+++ b/cppignore.lnx
54@@ -28,3 +28,12 @@ CppUnit::TestCaller<HTTPSClientSessionTest>.testProxy
55 CppUnit::TestCaller<HTTPSStreamFactoryTest>.testProxy
56 CppUnit::TestCaller<DNSTest>.testHostByAddress
57 CppUnit::TestCaller<DNSTest>.testHostByName
58+CppUnit::TestCaller<ProcessTest>.testLaunch
59+CppUnit::TestCaller<ProcessTest>.testLaunchRedirectIn
60+CppUnit::TestCaller<ProcessTest>.testLaunchRedirectOut
61+CppUnit::TestCaller<ProcessTest>.testLaunchEnv
62+CppUnit::TestCaller<EVPTest>.testRSAEVPKeyFromPKCS12
63+CppUnit::TestCaller<PKCS12ContainerTest>.testFullPKCS12
64+CppUnit::TestCaller<PKCS12ContainerTest>.testCertsOnlyPKCS12
65+CppUnit::TestCaller<PKCS12ContainerTest>.testPEMReadWrite
66+CppUnit::TestCaller<MongoDBTest>.testArray
67