kms_rotation_crc: Remove useless comments
[platform/upstream/intel-gpu-tools.git] / tests / debugfs_emon_crash
1 #!/bin/bash
2 #
3 # This check if we can crash the kernel with segmentation-fault
4 # by reading /sys/kernel/debug/dri/0/i915_emon_status too quickly
5 #
6
7 SOURCE_DIR="$( dirname "${BASH_SOURCE[0]}" )"
8 . $SOURCE_DIR/drm_lib.sh
9
10 for z in $(seq 1 1000); do
11         cat $i915_dfs_path/i915_emon_status > /dev/null 2&>1
12 done
13
14 # If we got here, we haven't crashed
15
16 exit 0