blob: 8996842c9b7a6d862296ea1d0ef7185033931f9a [file]
#/bin/bash
# Make sure user_loop exists
make
nohz_full=$(cat /sys/devices/system/cpu/nohz_full | xargs)
if [[ "$nohz_full" != "(null)" && -n "$nohz_full" ]]
then
./dynticks-testing.py
./noise_parse.py -c $nohz_full trace
else
echo "ERROR: Make sure 'nohz_full' is set before execute './run'"
fi