aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/testsuite/ChangeLog5
-rw-r--r--gdb/testsuite/lib/cp-support.exp2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index e1bd8df..9659e37f 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2018-02-25 Simon Marchi <simon.marchi@polymtl.ca>
+
+ * lib/cp-support.exp (cp_test_ptype_class): Move space inside
+ parentheses.
+
2018-02-23 Maciej W. Rozycki <macro@mips.com>
* lib/cp-support.exp (cp_test_ptype_class): Fix a typo in the
diff --git a/gdb/testsuite/lib/cp-support.exp b/gdb/testsuite/lib/cp-support.exp
index 66b58d5..58c21a9 100644
--- a/gdb/testsuite/lib/cp-support.exp
+++ b/gdb/testsuite/lib/cp-support.exp
@@ -564,7 +564,7 @@ proc cp_test_ptype_class { in_exp in_testname in_key in_tag in_class_table
switch $nested_key {
enum {
set expected_result \
- "enum $nested_name (: (unsigned )?int)? \{"
+ "enum $nested_name (: (unsigned )?int )?\{"
foreach c $nested_children {
append expected_result "$c, "
}