-
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #891 from YoeDistro/kraj/master
Update layers
- Loading branch information
Showing
9 changed files
with
51 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule meta-clang
updated
2 files
+9 −0 | conf/nonclangable.conf | |
+13 −0 | recipes-devtools/valgrind/valgrind_%.bbappend |
Submodule meta-freescale
updated
4 files
+0 −3 | recipes-graphics/cairo/cairo_%.bbappend | |
+12 −11 | recipes-kernel/linux/linux-fslc-imx_6.1.bb | |
+2 −2 | recipes-kernel/linux/linux-fslc-lts_6.1.bb | |
+2 −2 | recipes-kernel/linux/linux-imx-headers_6.1.bb |
Submodule meta-openembedded
updated
43 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
...etworking/glib-networking/0001-tls-tests-connection.c-Disable-unclean-close-by-serv.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
From fdcd8fbf23983d33327967f3e4249bba7c5a1b93 Mon Sep 17 00:00:00 2001 | ||
From: Khem Raj <[email protected]> | ||
Date: Tue, 9 Jan 2024 11:15:21 -0800 | ||
Subject: [PATCH] tls/tests/connection.c: Disable unclean-close-by-server with | ||
openssl backend | ||
|
||
This test does not work when using openssl backend as reported here [1] | ||
|
||
Fixes | ||
|
||
not ok /tls/openssl/connection/unclean-close-by-server - GLib-Net:ERROR:../tls/tests/connection.c:2374:test_unclean_close_by_server: assertion failed (test->read_error == (g-tls-error-quark, 6)): Error reading data from TLS socket: error:00000005:lib(0)::reason(5) (g-tls-error-quark, 1) Bail out! | ||
stderr: | ||
** | ||
GLib-Net:ERROR:../tls/tests/connection.c:2374:test_unclean_close_by_server: assertion failed (test->read_error == (g-tls-error-quark, 6)): Error reading data from TLS socket: error:00000005:lib(0)::reason(5) (g-tls-error-quark, 1) | ||
|
||
[1] https://gitlab.gnome.org/GNOME/glib-networking/-/issues/219 | ||
|
||
Upstream-Status: Inappropriate [ Disabled test as a workaround until fixed ] | ||
Signed-off-by: Khem Raj <[email protected]> | ||
--- | ||
tls/tests/connection.c | 2 ++ | ||
1 file changed, 2 insertions(+) | ||
|
||
--- a/tls/tests/connection.c | ||
+++ b/tls/tests/connection.c | ||
@@ -3466,8 +3466,10 @@ main (int argc, | ||
setup_connection, test_simultaneous_sync_rehandshake, teardown_connection); | ||
g_test_add ("/tls/" BACKEND "/connection/close-immediately", TestConnection, NULL, | ||
setup_connection, test_close_immediately, teardown_connection); | ||
+ #ifndef BACKEND_IS_OPENSSL | ||
g_test_add ("/tls/" BACKEND "/connection/unclean-close-by-server", TestConnection, NULL, | ||
setup_connection, test_unclean_close_by_server, teardown_connection); | ||
+ #endif | ||
g_test_add ("/tls/" BACKEND "/connection/async-implicit-handshake", TestConnection, NULL, | ||
setup_connection, test_async_implicit_handshake, teardown_connection); | ||
g_test_add ("/tls/" BACKEND "/connection/output-stream-close", TestConnection, NULL, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule poky
updated
71 files