pastebin - collaborative debugging tool
rovema.kpaste.net RSS


statistics rds test script for Phase4
Posted by Anonymous on Tue 21st Sep 2021 13:39
raw | new post
modification of post by Anonymous (view diff)

  1. #!/usr/bin/ksh93
  2. # needs ksh93 for floating-point math in $((...))
  3.  
  4. function isvalidpid
  5. {
  6.         integer pid=$1
  7.         # POSIX uses $ kill -0 ... # to check whether the pid is valid
  8.         if kill -0 $pid 2>'/dev/null' ; then
  9.                 return 0
  10.         else
  11.                 return 1
  12.         fi
  13. }
  14.  
  15. function disable_cpu_power_management
  16. {
  17. set -x
  18.         typeset -r syscpupath='/sys/devices/system/cpu'
  19.         typeset cpu currcpupath
  20.  
  21.         print 'on' >'/sys/devices/system/cpu/power/control'
  22.  
  23.         for cpu in 'cpu0' 'cpu1' ; do
  24.                 currcpupath="${syscpupath}/${cpu}/"
  25.  
  26.                 print 'performance' >"${currcpupath}/cpufreq/energy_performance_preference"
  27.                 print 'performance' >"${currcpupath}/cpufreq/scaling_governor"
  28.                 cat "${currcpupath}/cpufreq/scaling_max_freq" >"${currcpupath}/cpufreq/scaling_min_freq"
  29.                 printf '\x00\x00\x00\x00' >'/dev/cpu_dma_latency'
  30.         done
  31.  
  32.         # another try
  33.         cpupower frequency-set --freq 1600
  34.         cpupower idle-set --disable-by-latency 0
  35.  
  36.         # disable swapping/paging for data
  37.         # (paging of executable pages might still occur)
  38.         sysctl vm.swappiness=1
  39.         swapoff -a
  40.                
  41.         return 0
  42. }
  43.  
  44.  
  45. function test_cycle
  46. {
  47.         typeset s
  48.         integer x
  49.         nameref tc=$1
  50.  
  51.         cd '/opt/rovema/rds/' || return 1
  52.        
  53.         tc.rds_output_logfile="rds_statistics_myrdslog_${tc.i}.log"
  54.         rm -f "${tc.rds_output_logfile}"
  55.  
  56.         chrt --rr 30 ./rds -dl 7 >"${tc.rds_output_logfile}" 2>&1 &
  57.         (( tc.rds_pid=$! ))
  58.         (( tc.rds_starttime=SECONDS, tc.rds_stoptime=0 ))
  59.        
  60.         for (( x=20 ; x > 0 ; x-- )) ; do
  61.                 sleep 3
  62.  
  63.                 s="$( <"${tc.rds_output_logfile}" )"
  64.  
  65.                 #
  66.                 # parse output:
  67.                 # rds success output: "transferDataOfPhase '4' with bReady = 1"
  68.                 # rds waiting for input "Input:"
  69.                 # rds failed to switch to phase 4: "Error during switching to CP4 in startup"
  70.                 #
  71.                
  72.                 if [[ "$s" == *"Input:"* ]] ; then
  73.                         printf $"Rds ready for input\n"
  74.                         (( x=0 ))
  75.                 fi
  76.                 if [[ "$s" == *"transferDataOfPhase '4' with bReady = 1"* ]] ; then
  77.                         printf $"Success: phase 4 reached\n"
  78.                         (( tc.runs_ok++ ))
  79.                         (( x=0 ))
  80.                 fi
  81.                 if [[ "$s" == ~(E)(Error\ during.+to\ CP4) ]] ; then
  82.                         printf $"Failure: phase 4 not reached\n"
  83.                         (( tc.runs_failed++ ))
  84.                         (( x=0 ))
  85.                        
  86.                         # log last twenty lines of output if we failed
  87.                         tc.output_of_failed_runs[tc.i]="$( tail -n 20 <<<"$s" )"
  88.                 fi
  89.         done
  90.  
  91.        
  92.         #
  93.         # wait 20 seconds for process to finish with SIGINT
  94.         # and send him a SIGKILL when it refuses to obey
  95.         #
  96.         kill -s INT ${tc.rds_pid}
  97.         for (( x=10 ; x > 0 ; x-- )) ; do
  98.                 sleep 2
  99.                 isvalidpid ${tc.rds_pid} || break
  100.         done
  101.         isvalidpid ${tc.rds_pid} && kill -s KILL ${tc.rds_pid}
  102.         wait
  103.         (( tc.rds_pid=-1 ))
  104.  
  105.         (( tc.rds_stoptime=SECONDS ))
  106.         (( tc.rds_runtime=tc.rds_stoptime-tc.rds_starttime ))
  107.        
  108.         return 0
  109. }
  110.  
  111.  
  112. function main
  113. {
  114.         # variables for the test runs
  115.         compound c=(
  116.                 typeset rds_output_logfile
  117.  
  118.                 integer rds_pid=-1
  119.                 float   rds_starttime
  120.                 float   rds_stoptime
  121.                 float   rds_runtime
  122.                 integer i
  123.                 integer runs_failed=0
  124.                 integer runs_ok=0
  125.        
  126.                 typeset -a output_of_failed_runs
  127.         )
  128.  
  129.         set -o errexit
  130.         set -o xtrace
  131.  
  132.         #
  133.         # prechecks
  134.         #
  135.  
  136.         export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/rovema/lib
  137.         modprobe -f simatic_ipc_nvram
  138.         modprobe msr
  139.         modprobe cpuid
  140.         modprobe intel_pstate
  141.         ulimit -c unlimited
  142.  
  143.         #
  144.         # test loop
  145.         #
  146.         for (( c.i=0 ; c.i < 30 ; c.i++ )) ; do
  147.                 disable_cpu_power_management
  148.  
  149.                 test_cycle c
  150.  
  151.                 # print statistics
  152.                 printf $"#### Statistics:\n"
  153.                 print -v c
  154.  
  155.                 sleep 2
  156.         done
  157.  
  158.         #
  159.         # done
  160.         #
  161.         printf $"#\n#Done:\n#\n"
  162.         print -v c
  163.  
  164.         return 0
  165. }
  166.  
  167. main "$@"
  168. # EOF.

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at