blob: 158b282585263113dda59e5a50e4ea9f4a761594 (
plain)
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
|
From: Filip Kobierski <fkobi@pm.me>
Upstream states that " There are known failures on all platforms"[1].
This patch removes the tests that fail for Gentoo.
They both test if the library can parse PM dates in a 12 hour format.
Here are the failiure messages:
test_Ip(): Assertion `tp == sys_days{2016_y/12/11} + hours{13}' failed.
test_p(): Assertion `tp == sys_days{2016_y/12/11} + hours{23}' failed.
[1]: https://github.com/HowardHinnant/date?tab=readme-ov-file#build--test
---
test/date_test/parse.pass.cpp | 2 --
1 file changed, 2 deletions(-)
diff --git a/test/date_test/parse.pass.cpp b/test/date_test/parse.pass.cpp
index 13ca909..cdeea71 100644
--- a/test/date_test/parse.pass.cpp
+++ b/test/date_test/parse.pass.cpp
@@ -906,11 +906,9 @@ main()
test_D();
test_F();
test_H();
- test_Ip();
test_j();
test_m();
test_M();
- test_p();
test_r();
test_R();
test_S();
--
2.45.2
|