[Armadeus-commitlog] armadeus branch, master, updated. armadeus-6.0-71-g593cd7f
Brought to you by:
sszy
|
From: Sébastien S. <ss...@us...> - 2016-05-12 11:29:30
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "armadeus".
The branch, master has been updated
via 593cd7fcc58c49f224f81f51c316caf7ff97b7e1 (commit)
from 3b4a20918ff2aab61eba249045e796d7f6218bb5 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 593cd7fcc58c49f224f81f51c316caf7ff97b7e1
Author: Sébastien Szymanski <seb...@ar...>
Date: Thu May 12 13:24:46 2016 +0200
[TEST] test_imxregs: properly extract ID_REG value
This test fails because it doesn't properly extract the ID_REG value from the
imxregs output. Fix this.
-----------------------------------------------------------------------
Summary of changes:
target/test/packages/test_imxregs.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/target/test/packages/test_imxregs.sh b/target/test/packages/test_imxregs.sh
index 0fed315..7b96088 100755
--- a/target/test/packages/test_imxregs.sh
+++ b/target/test/packages/test_imxregs.sh
@@ -50,7 +50,7 @@ test_imxregs()
execute_for_target set_ids
$EXEC_NAME $ID_REG
if [ "$?" == 0 ]; then
- CHIP_ID=`$EXEC_NAME $ID_REG | grep $ID_REG | sed 's/^.*0x/0x/' | cut -d " " -f 1`
+ CHIP_ID=`$EXEC_NAME $ID_REG | sed -En 's:^PMU_MISC2.+(0x.{8}).+:\1:p'`
echo "Chip ID: $CHIP_ID"
if [ "$CHIP_ID" == $ID_VAL ]; then
echo_test_ok
hooks/post-receive
--
armadeus
|