diff options
author | Nathan Rossi <nathan@nathanrossi.com> | 2019-09-05 20:41:56 +1000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-09-06 12:45:47 +0100 |
commit | 568130c1224b566dd2e1bba4143f33505a19ef11 (patch) | |
tree | 56a836fe40708d9ee4f5d23f67e4e1ae9d1b7ca8 /meta | |
parent | ac5479a3a33dc8f0eca5045a5550d7a7b08cbc56 (diff) | |
download | poky-568130c1224b566dd2e1bba4143f33505a19ef11.tar.gz |
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).
(From OE-Core rev: 4d3d7cac012a1f53c61a997615a761a7f25dd33f)
Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-testsuite.inc | 1 |
1 files changed, 1 insertions, 0 deletions
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() { | |||
77 | def generate_remote_ssh_linux_config(d): | 77 | def generate_remote_ssh_linux_config(d): |
78 | content = [] | 78 | content = [] |
79 | content.append('load_generic_config "unix"') | 79 | content.append('load_generic_config "unix"') |
80 | content.append('process_multilib_options ""') | ||
80 | content.append("set_board_info hostname {0}".format(d.getVar("TOOLCHAIN_TEST_HOST"))) | 81 | content.append("set_board_info hostname {0}".format(d.getVar("TOOLCHAIN_TEST_HOST"))) |
81 | content.append("set_board_info username {0}".format(d.getVar("TOOLCHAIN_TEST_HOST_USER"))) | 82 | content.append("set_board_info username {0}".format(d.getVar("TOOLCHAIN_TEST_HOST_USER"))) |
82 | 83 | ||