summaryrefslogtreecommitdiff
path: root/lib/igt_aux.c
diff options
context:
space:
mode:
authorVille Syrjälä <ville.syrjala@linux.intel.com>2015-10-22 18:44:56 +0300
committerVille Syrjälä <ville.syrjala@linux.intel.com>2015-10-23 15:40:09 +0300
commit8a17af80e0732cb6ce5e7348dcb2d56a7b870e1d (patch)
tree680513cf96a4f8a31792660966fbf39208b9be64 /lib/igt_aux.c
parent47db6fbd99f1c8b127269b124948da7049298963 (diff)
lib: Skip suspend/hibernate tests if the system doesn't support them
Do a dry run with rtcwake first to determine if the system even supports the intended suspend state. If not, skip the test. Fixes a bunch of stuff on my BYT FFRD8 that doesn't support S3. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Diffstat (limited to 'lib/igt_aux.c')
-rw-r--r--lib/igt_aux.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/igt_aux.c b/lib/igt_aux.c
index 04ca25b0..f3c76aeb 100644
--- a/lib/igt_aux.c
+++ b/lib/igt_aux.c
@@ -357,6 +357,9 @@ void igt_system_suspend_autoresume(void)
* seems to fare better. We need to investigate what's going on. */
igt_skip_on_simulation();
+ /* skip if system doesn't support suspend-to-mem */
+ igt_skip_on(system("rtcwake -n -s 30 -m mem") != 0);
+
ret = system("rtcwake -s 30 -m mem");
igt_assert_f(ret == 0,
"This failure means that something is wrong with the "
@@ -384,6 +387,9 @@ void igt_system_hibernate_autoresume(void)
* seems to fare better. We need to investigate what's going on. */
igt_skip_on_simulation();
+ /* skip if system doesn't support suspend-to-disk */
+ igt_skip_on(system("rtcwake -n -s 90 -m disk") != 0);
+
/* The timeout might need to be adjusted if hibernation takes too long
* or if we have to wait excessively long before resume
*/