diff options
author | Stephane Desneux <stephane.desneux@iot.bzh> | 2016-06-14 11:51:43 +0200 |
---|---|---|
committer | Stephane Desneux <stephane.desneux@iot.bzh> | 2016-06-14 11:51:51 +0200 |
commit | e2472c7b1d061aef8bb05a4d7940fd8159c4a329 (patch) | |
tree | d02452b65c994c373f88199028f53020722d9815 /dung-3.4.25-m2/arch_timer | |
parent | 87cdfd4626c0cb47fc22f328867e49d6268df85c (diff) |
add dung-3.4.25-m2, required by some JTA Functional.* testsblowfish_2.0.12.0.1
collection of shell scripts Used in multiple tests:
* Functional.arch_timer/arch_timer.sh
* Functional.scifab/scifab.sh
* Functional.cmt/cmt.sh
* Functional.sdhi_0/sdhi_0.sh
Change-Id: I268c426071890554518e8b4927620fe6df587c34
Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
Diffstat (limited to 'dung-3.4.25-m2/arch_timer')
-rwxr-xr-x | dung-3.4.25-m2/arch_timer/arch_timer-interrupt-lager.sh | 24 | ||||
-rwxr-xr-x | dung-3.4.25-m2/arch_timer/dmesg-lager.sh | 8 | ||||
-rwxr-xr-x | dung-3.4.25-m2/arch_timer/proc-interrupts-lager.sh | 14 |
3 files changed, 46 insertions, 0 deletions
diff --git a/dung-3.4.25-m2/arch_timer/arch_timer-interrupt-lager.sh b/dung-3.4.25-m2/arch_timer/arch_timer-interrupt-lager.sh new file mode 100755 index 0000000..4dfbf03 --- /dev/null +++ b/dung-3.4.25-m2/arch_timer/arch_timer-interrupt-lager.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +set -e +#set -x + +echo "ARM timer interrupt test" + +DEV_NAME="arch_timer" + +# CMT interrupt test +BEFORE=$($(dirname $0)/../common/interrupt-count.sh "$DEV_NAME") +sleep 5 +AFTER=$($(dirname $0)/../common/interrupt-count.sh "$DEV_NAME") + +# Show result +echo "Before interrupt:$BEFORE" +echo "After interrupt :$AFTER" + +if [ "$BEFORE" -ge "$AFTER" ]; then + echo "Interrupt cound is not increasing" + exit 1 +else + echo "Test passed" +fi diff --git a/dung-3.4.25-m2/arch_timer/dmesg-lager.sh b/dung-3.4.25-m2/arch_timer/dmesg-lager.sh new file mode 100755 index 0000000..10d10a9 --- /dev/null +++ b/dung-3.4.25-m2/arch_timer/dmesg-lager.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +set -e +#set -x + +echo "Arch ARM timer dmesg feature test" + +exec $(dirname $0)/../common/dmesg.sh "ARM arch timer >56 bits at 10000kHz" diff --git a/dung-3.4.25-m2/arch_timer/proc-interrupts-lager.sh b/dung-3.4.25-m2/arch_timer/proc-interrupts-lager.sh new file mode 100755 index 0000000..23a0afb --- /dev/null +++ b/dung-3.4.25-m2/arch_timer/proc-interrupts-lager.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +set -e +#set -x + +echo "arch_timer /proc/interrupts presence test" + +IRQ=27 +DIV_NAME="arch_timer" +if $(dirname $0)/../common/proc-interrupts.sh "$DIV_NAME" | grep "$IRQ"; then + echo "Test passed" +else + echo "Test has not passed" +fi |