You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
224 B
15 lines
224 B
7 months ago
|
#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");
|
||
|
}
|