mirror of
https://github.com/yuzu-mirror/breakpad.git
synced 2025-12-06 04:42:01 +01:00
7 lines
199 B
Plaintext
7 lines
199 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
testdata_dir=$srcdir/src/processor/testdata
|
||
|
|
./src/processor/minidump_stackwalk $testdata_dir/minidump1.dmp | \
|
||
|
|
tr -s '\015' '\012' | \
|
||
|
|
diff -u $testdata_dir/minidump1.stack.out -
|
||
|
|
exit $?
|