From 047c0f00606423cbd071559579b3056b03d45d4e Mon Sep 17 00:00:00 2001 From: David Skoland Date: Mon, 12 Dec 2022 19:32:39 +0100 Subject: [PATCH] wasm: Always use basic password-store=basic in tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This makes sure the browser only uses a basic password store and doesn't try to do anything fancy with the OS pass store, since it causes an issue on opensuse (kwallet isn't set up in CI). Change-Id: Ib48a15f4834fa9bb26cf8cf3fff9bb4d0fd0238a Reviewed-by: Mikołaj Boc Reviewed-by: Qt CI Bot Reviewed-by: Morten Johan Sørvig --- cmake/QtTestHelpers.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/QtTestHelpers.cmake b/cmake/QtTestHelpers.cmake index 9ec9ec2e946..c98723e2376 100644 --- a/cmake/QtTestHelpers.cmake +++ b/cmake/QtTestHelpers.cmake @@ -572,6 +572,7 @@ function(qt_internal_add_test name) list(APPEND extra_test_args "--silence_timeout=60") # TODO: Add functionality to specify browser list(APPEND extra_test_args "--browser=chrome") + list(APPEND extra_test_args "--browser_args=\"--password-store=basic\"") # We always want to enable asyncify for tests, as some of them use exec # Optimize for size (-Os), since asyncify tends to make the resulting