mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 20:07:25 +00:00
7ddce19779
Fixes
AssertionError:-
ptests which had no test results:
['minicoredumper']
Signed-off-by: Khem Raj <raj.khem@gmail.com>
13 lines
258 B
Bash
13 lines
258 B
Bash
#!/bin/sh
|
|
|
|
echo minicoredumper_demo
|
|
echo expecting Segmentation fault with core dump ...
|
|
|
|
minicoredumper_demo 6 & sleep 3 && minicoredumper_demo
|
|
|
|
if ls /var/crash/ | grep minicoredumper; then
|
|
echo "PASS: minicoredumper"
|
|
else
|
|
echo "FAIL: minicoredumper"
|
|
fi
|