mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2025-12-25 08:44:55 +01:00
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@11 4c0a9323-5329-0410-9bdc-e9ce6186880e
6 lines
188 B
Bash
Executable file
6 lines
188 B
Bash
Executable file
#!/bin/sh
|
|
testdata_dir=$srcdir/src/processor/testdata
|
|
./src/processor/minidump_dump $testdata_dir/minidump1.dmp | \
|
|
tr -s '\015' '\012' | \
|
|
diff -u $testdata_dir/minidump1.out -
|
|
exit $?
|