diff options
author | Tom Tromey <tromey@adacore.com> | 2022-01-03 09:03:55 -0700 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2022-01-03 09:06:01 -0700 |
commit | b896e87d76ec68cc62487a56fbd9091d940f6cde (patch) | |
tree | ad7fc1d000fd1b7d25cdea745f7a0d8e68e7c56e | |
parent | 4d603089c82f9a4bd8cb48f909c155d449adef62 (diff) | |
download | gdb-b896e87d76ec68cc62487a56fbd9091d940f6cde.zip gdb-b896e87d76ec68cc62487a56fbd9091d940f6cde.tar.gz gdb-b896e87d76ec68cc62487a56fbd9091d940f6cde.tar.bz2 |
Fix regression in page-logging.exp
Simon and Tom pointed out that page-logging.exp failed on their
machines. Tom tracked this down to the "width" setting. Since
there's no need in the test to change the width, it seems simplest to
remove the setting. I confirmed that the test still fails if the fix
is backed out, ensuring that the test is still testing what it
purports to.
-rw-r--r-- | gdb/testsuite/gdb.base/page-logging.exp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.base/page-logging.exp b/gdb/testsuite/gdb.base/page-logging.exp index 8071687..05a3f79 100644 --- a/gdb/testsuite/gdb.base/page-logging.exp +++ b/gdb/testsuite/gdb.base/page-logging.exp @@ -1,4 +1,4 @@ -# Copyright (C) 2021 Free Software Foundation, Inc. +# Copyright (C) 2021, 2022 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -21,7 +21,6 @@ if [gdb_debug_enabled] { gdb_start -gdb_test_no_output "set width 100" gdb_test_no_output "set height 5" gdb_test_no_output "set pagination on" |