]> code.ossystems Code Review - openembedded-core.git/commitdiff
gcc-testsuite.inc: Fix ssh.exp, ensure multilib_flags are populated
authorNathan Rossi <nathan@nathanrossi.com>
Thu, 5 Sep 2019 10:41:56 +0000 (20:41 +1000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 6 Sep 2019 11:44:25 +0000 (12:44 +0100)
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 <nathan@nathanrossi.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/gcc/gcc-testsuite.inc

index b383a358d8ff44a70060d1db4234db2ba4e8d81d..f68fec58edc6e88ba384a8650f0ffd7b6b839a2a 100644 (file)
@@ -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")))