This is the mail archive of the gdb-patches@sources.redhat.com 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]

Re: RFA: patch to fix gdb/1680


Literally, the test that blows up is:

  foreach r {0 1 2 3 4 5 6 7} {
      gdb_test "print \$xmm$r.v4_float" \
	  ".. = {$r, $r.25, $r.5, $r.75}.*" \
	  "check contents of %xmm$r"
  }

I ripped out most of the other meta-characters and this still blows up:

    gdb_test "print xmm0.v4_float" \
	".. = {0, 0.25, 0.5, 0.75}.*" \
	"check contents of xmm0"

"blows up" means:

  ERROR: Process no longer exists

What Daniel is saying, and I'm agreeing, is that gdb.cp/*.exp
has a lot of similar tests.  And they are not blowing up.

Michael C


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