summaryrefslogtreecommitdiff
path: root/runner/testdata/skippers.c
blob: be4a31b423e66ac0dcf85438e804a179678127f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "igt.h"

igt_main
{
	igt_fixture {
		igt_require_f(false, "Skipping from fixture\n");
	}

	igt_subtest("skip-one")
		igt_debug("Should be skipped\n");

	igt_subtest("skip-two")
		igt_debug("Should be skipped\n");
}