From: Lauri Kasanen Date: Wed, 26 May 2021 08:56:43 +0000 (+0300) Subject: QoL tuning X-Git-Tag: xlen-bcd~541 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=edb68930b2ed5fc9b9b2cfef332bf9fd90fe3baa;p=openpower-isa.git QoL tuning --- diff --git a/media/Makefile b/media/Makefile index 4b4e6892..332eb357 100644 --- a/media/Makefile +++ b/media/Makefile @@ -39,11 +39,11 @@ wget: tests: $(OBJ) @echo audio/mp3_0 for i in `seq 0 1000 9000`; do \ - audio/mp3/mp3_0.sh $$i; \ + audio/mp3/mp3_0.sh $$i || exit 1; \ done @echo audio/mp3_1 for i in `seq 0 23`; do \ - audio/mp3/mp3_1.sh $$i; \ + audio/mp3/mp3_1.sh $$i || exit 1; \ done diff --git a/media/audio/mp3/mp3_0.sh b/media/audio/mp3/mp3_0.sh index 57aa4bd2..8b8a3b43 100755 --- a/media/audio/mp3/mp3_0.sh +++ b/media/audio/mp3/mp3_0.sh @@ -1,4 +1,4 @@ -#!/bin/sh -e +#!/bin/sh -xe pypowersim -g audio/mp3/mp3_0.gpr \ -s common.spr \ diff --git a/media/audio/mp3/mp3_1.sh b/media/audio/mp3/mp3_1.sh index 0e4ee618..6627648a 100755 --- a/media/audio/mp3/mp3_1.sh +++ b/media/audio/mp3/mp3_1.sh @@ -1,4 +1,4 @@ -#!/bin/sh -e +#!/bin/sh -xe pypowersim -g audio/mp3/mp3_1.gpr \ -s common.spr \