summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/igt_aux.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/igt_aux.c b/lib/igt_aux.c
index 0e1eeea4..3bc10fbd 100644
--- a/lib/igt_aux.c
+++ b/lib/igt_aux.c
@@ -347,7 +347,8 @@ void igt_system_suspend_autoresume(void)
igt_skip_on_simulation();
ret = system("rtcwake -s 30 -m mem");
- igt_assert(ret == 0);
+ igt_assert_f(ret == 0, "This failure means that something is wrong with the rtcwake tool "
+ "or how your distro is set up. This is not a i915.ko or i-g-t bug.");
}
/**