9os

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 619cc47936e66f045ca645bd3a49362578232f7f
parent ac828da70e2a29074ed9e7cc8f333c92f270fe70
Author: Roberto Vargas <roberto.vargas@arm.com>
Date:   Wed, 17 Oct 2018 15:05:15 +0100

[test1] Fix name of the expected string in test1

Change-Id: I61938301bc2b820a85af87e953a76b42b4743859

Diffstat:
Mtest/test1/test.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/test1/test.sh b/test/test1/test.sh @@ -6,7 +6,7 @@ tmp1=tmp1.$$ tmp2=tmp2.$$ trap 'r=$?;rm -f $tmp1 $tmp2;exit $r' EXIT HUP INT QUIT TERM -$EMUCMD ./run | grep -v 'bad RMC' > $tmp1 +$EMUCMD ./run | grep -v 'bad RMC' | sed 's/hdl_//' > $tmp1 sed 's/\./_/g' < $SCRIPTDIR/rmu.cmd > $tmp2 diff -u $tmp1 $tmp2