• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "igt.h"
2 
3 igt_main
4 {
5 	igt_fixture {
6 		igt_require_f(false, "Skipping from fixture\n");
7 	}
8 
9 	igt_subtest("skip-one")
10 		igt_debug("Should be skipped\n");
11 
12 	igt_subtest("skip-two")
13 		igt_debug("Should be skipped\n");
14 }
15