mirror of
https://github.com/yuzu-mirror/breakpad.git
synced 2026-04-21 06:03:43 +00:00
7 lines
188 B
Text
7 lines
188 B
Text
|
|
#!/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 $?
|