summaryrefslogtreecommitdiffstats
path: root/recipes-test/test-nohz-ticks/files/test-nohz-ticks
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-test/test-nohz-ticks/files/test-nohz-ticks')
-rwxr-xr-xrecipes-test/test-nohz-ticks/files/test-nohz-ticks32
1 files changed, 32 insertions, 0 deletions
diff --git a/recipes-test/test-nohz-ticks/files/test-nohz-ticks b/recipes-test/test-nohz-ticks/files/test-nohz-ticks
new file mode 100755
index 0000000..f6d7546
--- /dev/null
+++ b/recipes-test/test-nohz-ticks/files/test-nohz-ticks
@@ -0,0 +1,32 @@
1#!/bin/sh
2
3cd /opt/ltp >/dev/null
4
5partitioning_done=false
6
7# Perform partitioning, if not already done
8if [ ! -d /sys/fs/cgroup/cpuset/rt ]; then
9 partrt create 0x$(list2mask --nohz)
10 partitioning_done=true
11fi
12
13logname=`date +"%Y_%m_%d_%H_%M_%S"`".log"
14./runltp -n -i 5 -p -d /tmp -l $logname -f partrt_nohz_full
15
16if [ ! -d ./results ]; then
17 echo "FAIL: no result found"
18 $partitioning_done && partrt undo
19 exit 1
20fi
21
22cat ./results/$logname | while read line
23do
24 resultLine=`echo $line | grep -c -E "PASS|FAIL"`
25 if [ $resultLine -eq 1 ]; then
26 testcase=`echo $line | awk '{print $1}'`
27 result=`echo $line | awk '{print $2}'`
28 echo "$result: $testcase"
29 fi
30done
31
32$partitioning_done && partrt undo