This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] ptid-selftests: Fix erroneous assert messages


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=6670ec13726c3afca789672f6235378a5e1f7d71

commit 6670ec13726c3afca789672f6235378a5e1f7d71
Author: Simon Marchi <simon.marchi@ericsson.com>
Date:   Fri Apr 7 10:27:48 2017 -0400

    ptid-selftests: Fix erroneous assert messages
    
    gdb/ChangeLog:
    
    	* unittests/ptid-selftests.c: Fix erroneous assert messages.

Diff:
---
 gdb/ChangeLog                  |  4 ++++
 gdb/unittests/ptid-selftests.c | 18 +++++++++---------
 2 files changed, 13 insertions(+), 9 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index f136ec9..01c4c70 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2017-04-07  Simon Marchi  <simon.marchi@ericsson.com>
+
+	* unittests/ptid-selftests.c: Fix erroneous assert messages.
+
 2017-04-07  Alan Hayward  <alan.hayward@arm.com>
 
 	* bfin-tdep.c (BFIN_MAX_REGISTER_SIZE): Add.
diff --git a/gdb/unittests/ptid-selftests.c b/gdb/unittests/ptid-selftests.c
index 5fc2ca6..a42c2ef 100644
--- a/gdb/unittests/ptid-selftests.c
+++ b/gdb/unittests/ptid-selftests.c
@@ -129,21 +129,21 @@ static_assert (!ptid_t (2, 2, 2).matches (pid), "other both doesn't match pid");
 
 /* Verify matches against exact matches.  */
 
-static_assert (!pid.matches (lwp), "pid matches lwp");
+static_assert (!pid.matches (lwp), "pid doesn't match lwp");
 static_assert (lwp.matches (lwp), "lwp matches lwp");
-static_assert (!tid.matches (lwp), "tid matches lwp");
-static_assert (!both.matches (lwp), "both matches lwp");
+static_assert (!tid.matches (lwp), "tid doesn't match lwp");
+static_assert (!both.matches (lwp), "both doesn't match lwp");
 static_assert (!ptid_t (2, 2, 0).matches (lwp), "other lwp doesn't match lwp");
 
-static_assert (!pid.matches (tid), "pid matches tid");
-static_assert (!lwp.matches (tid), "lwp matches tid");
+static_assert (!pid.matches (tid), "pid doesn't match tid");
+static_assert (!lwp.matches (tid), "lwp doesn't match tid");
 static_assert (tid.matches (tid), "tid matches tid");
-static_assert (!both.matches (tid), "both matches tid");
+static_assert (!both.matches (tid), "both doesn't match tid");
 static_assert (!ptid_t (2, 0, 2).matches (tid), "other tid doesn't match tid");
 
-static_assert (!pid.matches (both), "pid matches both");
-static_assert (!lwp.matches (both), "lwp matches both");
-static_assert (!tid.matches (both), "tid matches both");
+static_assert (!pid.matches (both), "pid doesn't match both");
+static_assert (!lwp.matches (both), "lwp doesn't match both");
+static_assert (!tid.matches (both), "tid doesn't match both");
 static_assert (both.matches (both), "both matches both");
 static_assert (!ptid_t (2, 2, 2).matches (both),
 	       "other both doesn't match both");


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]