Skip to content
Snippets Groups Projects
Commit c7f50b92 authored by Sebastian Fricke's avatar Sebastian Fricke
Browse files

Store test-media-dmesg.log in the log directory


The file was stored in the root of the project but it should be in the
log directory.

Signed-off-by: default avatarSebastian Fricke <sebastian.fricke@collabora.com>
parent 12ed08e8
No related branches found
No related tags found
No related merge requests found
......@@ -804,8 +804,8 @@ if [ $virtme_64 -eq 1 -o $virtme_32 -eq 1 ]; then
if [ $result -eq 124 ]; then
echo "qemu timed out!" >>$logdir/$logday-test-media-64.log
fi
if [ -f $top/test-media-dmesg.log ]; then
mv $top/test-media-dmesg.log $logdir/$logday-test-media-64-dmesg.log
if [ -f $logdir/test-media-dmesg.log ]; then
mv $logdir/test-media-dmesg.log $logdir/$logday-test-media-64-dmesg.log
fi
echo -n "virtme-64: " >>$logdir/summary
......@@ -820,7 +820,7 @@ if [ $virtme_64 -eq 1 -o $virtme_32 -eq 1 ]; then
echo "OK: $virtme_result" >>$logdir/summary
fi
fi
rm -f $log/test-media-dmesg.log
rm -f $logdir/test-media-dmesg.log
if [ $virtme_32 -eq 1 -a -n "$virtme_32_arg" ]; then
echo
echo
......@@ -834,8 +834,8 @@ if [ $virtme_64 -eq 1 -o $virtme_32 -eq 1 ]; then
if [ $result -eq 124 ]; then
echo "qemu timed out!" >>$logdir/$logday-test-media-32.log
fi
if [ -f $top/test-media-dmesg.log ]; then
mv $top/test-media-dmesg.log $logdir/$logday-test-media-32-dmesg.log
if [ -f $logdir/test-media-dmesg.log ]; then
mv $logdir/test-media-dmesg.log $logdir/$logday-test-media-32-dmesg.log
fi
echo -n "virtme-32: " >>$logdir/summary
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment