diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/drv_module_reload_basic | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/drv_module_reload_basic b/tests/drv_module_reload_basic index a221d65f..93cf7c00 100755 --- a/tests/drv_module_reload_basic +++ b/tests/drv_module_reload_basic @@ -36,8 +36,10 @@ function reload() { rmmod snd_hda_intel && snd_hda_intel_unloaded=1 fi - #ignore errors in ips - gen5 only - rmmod intel_ips &> /dev/null + # gen5 only + if mod_loaded intel_ips; then + rmmod intel_ips + fi rmmod i915 || return $IGT_EXIT_SKIP #ignore errors in intel-gtt, often built-in rmmod intel-gtt &> /dev/null |