tests/pm_pc8: extract i2c_subtest_check_environment
authorPaulo Zanoni <paulo.r.zanoni@intel.com>
Fri, 8 Nov 2013 19:07:59 +0000 (17:07 -0200)
committerPaulo Zanoni <paulo.r.zanoni@intel.com>
Fri, 8 Nov 2013 20:40:22 +0000 (18:40 -0200)
Just to make it more organized and consistent with the other tests.

Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
tests/pm_pc8.c

index 5a0b1fb..43564b7 100644 (file)
@@ -711,8 +711,7 @@ static void batch_subtest(void)
        igt_assert(pc8_plus_enabled());
 }
 
-/* Try to use raw I2C, which also needs interrupts. */
-static void i2c_subtest(void)
+static void i2c_subtest_check_environment(void)
 {
        int i2c_dev_files = 0;
        DIR *dev_dir;
@@ -727,6 +726,12 @@ static void i2c_subtest(void)
        }
        closedir(dev_dir);
        igt_require(i2c_dev_files);
+}
+
+/* Try to use raw I2C, which also needs interrupts. */
+static void i2c_subtest(void)
+{
+       i2c_subtest_check_environment();
 
        enable_one_screen(&ms_data);
        igt_assert(pc8_plus_disabled());