From b886031bd2bb19b304c3d14594bfc8a4107a6c28 Mon Sep 17 00:00:00 2001 From: Tom de Vries Date: Sat, 9 Oct 2021 00:40:46 +0200 Subject: [PATCH] [gdb/testsuite] Fix gdb.base/info-types-c++.exp with stressed cpu When running test-case gdb.base/info-types-c++.exp in conjunction with: ... $ stress -c $(($(cat /proc/cpuinfo | grep -c "^processor") + 1)) ... we get: ... FAIL: gdb.base/info-types-c++.exp: info types (timeout) ... Fix this by setting auto-solib-add to off. Tested on x86_64-linux. --- gdb/testsuite/gdb.base/info-types.exp.tcl | 1 + 1 file changed, 1 insertion(+) diff --git a/gdb/testsuite/gdb.base/info-types.exp.tcl b/gdb/testsuite/gdb.base/info-types.exp.tcl index 42dccf60473..b68a95c3612 100644 --- a/gdb/testsuite/gdb.base/info-types.exp.tcl +++ b/gdb/testsuite/gdb.base/info-types.exp.tcl @@ -32,6 +32,7 @@ proc run_test { lang } { "${testfile}" $srcfile "debug $lang"]} { return -1 } + gdb_test_no_output "set auto-solib-add off" if ![runto_main] then { return 0 -- 2.30.2