From: Nathan Rossi Date: Thu, 5 Sep 2019 10:41:56 +0000 (+1000) Subject: gcc-testsuite.inc: Fix ssh.exp, ensure multilib_flags are populated X-Git-Tag: uninative-2.7~268 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=4d3d7cac012a1f53c61a997615a761a7f25dd33f;p=openembedded-core.git gcc-testsuite.inc: Fix ssh.exp, ensure multilib_flags are populated The 'process_multilib_options' function of dejagnu also populates the 'multilib_flags' content from the '--target_board=' arguments. The 'ssh.exp' generated is missing this call ('user.exp' includes it). Signed-off-by: Nathan Rossi Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/gcc/gcc-testsuite.inc b/meta/recipes-devtools/gcc/gcc-testsuite.inc index b383a358d8..f68fec58ed 100644 --- a/meta/recipes-devtools/gcc/gcc-testsuite.inc +++ b/meta/recipes-devtools/gcc/gcc-testsuite.inc @@ -77,6 +77,7 @@ python check_prepare() { def generate_remote_ssh_linux_config(d): content = [] content.append('load_generic_config "unix"') + content.append('process_multilib_options ""') content.append("set_board_info hostname {0}".format(d.getVar("TOOLCHAIN_TEST_HOST"))) content.append("set_board_info username {0}".format(d.getVar("TOOLCHAIN_TEST_HOST_USER")))