summaryrefslogtreecommitdiff
path: root/lib/igt_aux.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2016-03-02 13:57:35 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2016-03-02 13:58:35 +0000
commit5533f22c354af2efd137a2f711d2e1ec86d70cb2 (patch)
tree4d639745bf4e6a6694ec052b35b71073cc49f4d7 /lib/igt_aux.c
parenta3de0bc9df07918d08298d954127f07085a086e5 (diff)
lib: Show the command that fails when suspending
Include the system("") in the debug output for the assertion failure. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'lib/igt_aux.c')
-rw-r--r--lib/igt_aux.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/igt_aux.c b/lib/igt_aux.c
index 7d35666e..affde6e9 100644
--- a/lib/igt_aux.c
+++ b/lib/igt_aux.c
@@ -364,8 +364,6 @@ void igt_cleanup_aperture_trashers(void)
*/
void igt_system_suspend_autoresume(void)
{
- int ret;
-
/* FIXME: Simulation doesn't like suspend/resume, and not even a lighter
* approach using /sys/power/pm_test to just test our driver's callbacks
* seems to fare better. We need to investigate what's going on. */
@@ -374,8 +372,7 @@ void igt_system_suspend_autoresume(void)
/* 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,
+ igt_assert_f(system("rtcwake -s 30 -m mem") == 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.\n");