Revert "[libcxx][pretty printers] Import gdb module in gdb feature check"

This reverts commit 0c2a454845.

This was my mistake. When gdb can find its data directory it'll
import it automatically. If it can't (like when you're using a
version from a build folder) you need to give it the data
directory path.

We're safe to assume gdb is installed for testing purposes
so it'll import it for us.
This commit is contained in:
David Spickett 2021-09-24 09:11:28 +00:00
parent 7afa61e718
commit 5efafc3e65
1 changed files with 0 additions and 1 deletions

View File

@ -171,7 +171,6 @@ def check_gdb(cfg):
# Using the quit command here means that gdb itself exits, not just
# the "python <...>" command.
test_src = """\
import gdb
try:
gdb.Breakpoint(\"main\").commands=\"foo\"
except AttributeError: