[gdb/testsuite] Remove KFAIL from gdb.base/info-macros.exp
authorTom de Vries <tdevries@suse.de>
Tue, 28 Apr 2020 04:54:55 +0000 (06:54 +0200)
committerTom de Vries <tdevries@suse.de>
Tue, 28 Apr 2020 04:54:55 +0000 (06:54 +0200)
When running test-case gdb.base/info-macros.exp, we have:
...
(gdb) KFAIL: gdb.base/info-macros.exp: info macros info-macros.c:42 \
  (PRMS: gdb/NNNN)
...

The described failure mode however:
...
set test "info macros info-macros.c:42"

set r1 ".*define DEF_MACROS"
set r2 ".*define ONE"
setup_kfail "gdb/NNNN" *-*-*
gdb_test "$test" "$r1$r2"
...
does not match the actual output, given that both defines are in fact
printed.

The pattern fails to match because it's missing a trailing ".*".

Fix this by removing the KFAIL and adding the missing trailing ".*".

Tested on x86_64-linux.

gdb/testsuite/ChangeLog:

2020-04-28  Tom de Vries  <tdevries@suse.de>

* gdb.base/info-macros.exp: Remove KFAIL.  Add missing trailing ".*".

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/info-macros.exp

index 2972e273992efe993c432da8870a470b386fbf73..b51ec118b192defbb860b4ad181bb7291b732e46 100644 (file)
@@ -1,3 +1,7 @@
+2020-04-28  Tom de Vries  <tdevries@suse.de>
+
+       * gdb.base/info-macros.exp: Remove KFAIL.  Add missing trailing ".*".
+
 2020-04-28  Tom de Vries  <tdevries@suse.de>
 
        * gdb.ada/array_ptr_renaming.exp: Add PR number in KFAIL.
index d525515efc97cfa4b0ba78f1f309d127cb17d020..f18281746d9aa31d692082230188c196574e079f 100644 (file)
@@ -273,7 +273,4 @@ set test "info macros info-macros.c:42"
 
 set r1 ".*define DEF_MACROS"
 set r2 ".*define ONE"
-# info macros on the line where the #define or #include is
-# fails to find the macro defined (though it works on the next line.)
-setup_kfail "gdb/NNNN" *-*-*
-gdb_test "$test" "$r1$r2"
+gdb_test "$test" "$r1$r2.*"