blob: ddbbffa261c377396a3afc0a6f58324870309323 [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
./cpunoise.py
./noise_parse.py -c $nohz_full trace
else
echo "ERROR: Make sure 'nohz_full' is set before execute './run'"
fi