diff options
author | mmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2006-11-06 23:00:19 +0000 |
---|---|---|
committer | mmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2006-11-06 23:00:19 +0000 |
commit | 76f052f8fbf8864dee5992b857229d06560a766a (patch) | |
tree | 330fbb8f2e053ab28e1a22ae825e2b94bd2026d9 /src/processor/minidump_dump_test | |
parent | Minidumps should indicate which thread generated the dump and which requested (diff) | |
download | breakpad-76f052f8fbf8864dee5992b857229d06560a766a.tar.xz |
Suppress handler thread from appearing in MinidumpProcessor's ProcessState
(#65). r=bryner
- Interface change: (ProcessState).crash_thread is now requesting_thread and
will be populated for non-crash dumps. If the requesting thread cannot
be determined, requesting_thread is set to -1.
http://groups.google.com/group/airbag-dev/browse_thread/thread/c422ec481a2db440
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@62 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/processor/minidump_dump_test')
-rwxr-xr-x | src/processor/minidump_dump_test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/processor/minidump_dump_test b/src/processor/minidump_dump_test index b21566d7..fb62ace7 100755 --- a/src/processor/minidump_dump_test +++ b/src/processor/minidump_dump_test @@ -30,7 +30,7 @@ # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. testdata_dir=$srcdir/src/processor/testdata -./src/processor/minidump_dump $testdata_dir/minidump1.dmp | \ - tr -s '\015' '\012' | \ - diff -u $testdata_dir/minidump1.out - +./src/processor/minidump_dump $testdata_dir/minidump2.dmp | \ + tr -d '\015' | \ + diff -u $testdata_dir/minidump2.dump.out - exit $? |