35 lines
938 B
Diff
35 lines
938 B
Diff
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
|
|
|