summaryrefslogtreecommitdiff
path: root/android/scripts/pm-qa.sh
blob: 4499d0a85bd52db14e146805c33e72061ff5dd16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/system/bin/sh

scripts_dir="/system/bin/pm-qa"
test_func(){
   if [ ! -d "${scripts_dir}" ]; then
       echo "pm-qa=fail"
       exit
   fi

   cd "${scripts_dir}"

   pwd_dir=$PWD
   tests_dirs="cpuidle cpufreq cpuhotplug cputopology thermal"

   for dir in $tests_dirs; do
       var=$dir'_sanity.sh'
       subDir=${pwd_dir}/$dir
       if [ -d $subDir ]; then
           cd $subDir
       else
           continue
       fi

       /system/bin/sh $var
       if [ $? -ne 1 ]; then
           continue
       fi

       filelist=$(find . -name "*.sh" | sort)
       for file in $filelist; do
           path=$file
           /system/bin/sh $path
       done
       cd ..
   done

   # Find instances of cpuidle_killer and kill
   # all pids associated with it until a better
   # solution comes up.
   pids=$(pidof "cpuidle_killer")

   for pid in $pids; do
        kill -9 $pid
   done

   echo "pm-qa=pass"
}

test_func
exit