fail_data.report_found); \
 } while (0)
 
+#define KASAN_TEST_NEEDS_CONFIG_ON(test, config) do {                  \
+       if (!IS_ENABLED(config)) {                                      \
+               kunit_info((test), "skipping, " #config " required");   \
+               return;                                                 \
+       }                                                               \
+} while (0)
+
+#define KASAN_TEST_NEEDS_CONFIG_OFF(test, config) do {                 \
+       if (IS_ENABLED(config)) {                                       \
+               kunit_info((test), "skipping, " #config " enabled");    \
+               return;                                                 \
+       }                                                               \
+} while (0)
+
 static void kmalloc_oob_right(struct kunit *test)
 {
        char *ptr;
        char *ptr;
        size_t size = KMALLOC_MAX_CACHE_SIZE + 10;
 
-       if (!IS_ENABLED(CONFIG_SLUB)) {
-               kunit_info(test, "CONFIG_SLUB is not enabled.");
-               return;
-       }
+       KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_SLUB);
 
        /*
         * Allocate a chunk that does not fit into a SLUB cache to trigger
        char *ptr;
        size_t size = KMALLOC_MAX_CACHE_SIZE + 10;
 
-       if (!IS_ENABLED(CONFIG_SLUB)) {
-               kunit_info(test, "CONFIG_SLUB is not enabled.");
-               return;
-       }
+       KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_SLUB);
 
        ptr = kmalloc(size, GFP_KERNEL);
        KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
        char *ptr;
        size_t size = KMALLOC_MAX_CACHE_SIZE + 10;
 
-       if (!IS_ENABLED(CONFIG_SLUB)) {
-               kunit_info(test, "CONFIG_SLUB is not enabled.");
-               return;
-       }
+       KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_SLUB);
 
        ptr = kmalloc(size, GFP_KERNEL);
        KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
        } *ptr1, *ptr2;
 
        /* This test is specifically crafted for the generic mode. */
-       if (!IS_ENABLED(CONFIG_KASAN_GENERIC)) {
-               kunit_info(test, "CONFIG_KASAN_GENERIC required\n");
-               return;
-       }
+       KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_KASAN_GENERIC);
 
        ptr1 = kmalloc(sizeof(*ptr1) - 3, GFP_KERNEL);
        KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr1);
        char *p = &global_array[ARRAY_SIZE(global_array) + i];
 
        /* Only generic mode instruments globals. */
-       if (!IS_ENABLED(CONFIG_KASAN_GENERIC)) {
-               kunit_info(test, "CONFIG_KASAN_GENERIC required");
-               return;
-       }
+       KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_KASAN_GENERIC);
 
        KUNIT_EXPECT_KASAN_FAIL(test, *(volatile char *)p);
 }
        volatile int i = OOB_TAG_OFF;
        char *p = &stack_array[ARRAY_SIZE(stack_array) + i];
 
-       if (!IS_ENABLED(CONFIG_KASAN_STACK)) {
-               kunit_info(test, "CONFIG_KASAN_STACK is not enabled");
-               return;
-       }
+       KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_KASAN_STACK);
 
        KUNIT_EXPECT_KASAN_FAIL(test, *(volatile char *)p);
 }
        char *p = alloca_array - 1;
 
        /* Only generic mode instruments dynamic allocas. */
-       if (!IS_ENABLED(CONFIG_KASAN_GENERIC)) {
-               kunit_info(test, "CONFIG_KASAN_GENERIC required");
-               return;
-       }
-
-       if (!IS_ENABLED(CONFIG_KASAN_STACK)) {
-               kunit_info(test, "CONFIG_KASAN_STACK is not enabled");
-               return;
-       }
+       KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_KASAN_GENERIC);
+       KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_KASAN_STACK);
 
        KUNIT_EXPECT_KASAN_FAIL(test, *(volatile char *)p);
 }
        char *p = alloca_array + i;
 
        /* Only generic mode instruments dynamic allocas. */
-       if (!IS_ENABLED(CONFIG_KASAN_GENERIC)) {
-               kunit_info(test, "CONFIG_KASAN_GENERIC required");
-               return;
-       }
-
-       if (!IS_ENABLED(CONFIG_KASAN_STACK)) {
-               kunit_info(test, "CONFIG_KASAN_STACK is not enabled");
-               return;
-       }
+       KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_KASAN_GENERIC);
+       KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_KASAN_STACK);
 
        KUNIT_EXPECT_KASAN_FAIL(test, *(volatile char *)p);
 }
         * str* functions are not instrumented with CONFIG_AMD_MEM_ENCRYPT.
         * See https://bugzilla.kernel.org/show_bug.cgi?id=206337 for details.
         */
-       if (IS_ENABLED(CONFIG_AMD_MEM_ENCRYPT)) {
-               kunit_info(test,
-                       "str* functions are not instrumented with CONFIG_AMD_MEM_ENCRYPT");
-               return;
-       }
+       KASAN_TEST_NEEDS_CONFIG_OFF(test, CONFIG_AMD_MEM_ENCRYPT);
 
        if (OOB_TAG_OFF)
                size = round_up(size, OOB_TAG_OFF);
         * str* functions are not instrumented with CONFIG_AMD_MEM_ENCRYPT.
         * See https://bugzilla.kernel.org/show_bug.cgi?id=206337 for details.
         */
-       if (IS_ENABLED(CONFIG_AMD_MEM_ENCRYPT)) {
-               kunit_info(test,
-                       "str* functions are not instrumented with CONFIG_AMD_MEM_ENCRYPT");
-               return;
-       }
+       KASAN_TEST_NEEDS_CONFIG_OFF(test, CONFIG_AMD_MEM_ENCRYPT);
 
        if (OOB_TAG_OFF)
                size = round_up(size, OOB_TAG_OFF);
         * str* functions are not instrumented with CONFIG_AMD_MEM_ENCRYPT.
         * See https://bugzilla.kernel.org/show_bug.cgi?id=206337 for details.
         */
-       if (IS_ENABLED(CONFIG_AMD_MEM_ENCRYPT)) {
-               kunit_info(test,
-                       "str* functions are not instrumented with CONFIG_AMD_MEM_ENCRYPT");
-               return;
-       }
+       KASAN_TEST_NEEDS_CONFIG_OFF(test, CONFIG_AMD_MEM_ENCRYPT);
 
        ptr = kmalloc(size, GFP_KERNEL | __GFP_ZERO);
        KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
        long *bits;
 
        /* This test is specifically crafted for the generic mode. */
-       if (!IS_ENABLED(CONFIG_KASAN_GENERIC)) {
-               kunit_info(test, "CONFIG_KASAN_GENERIC required\n");
-               return;
-       }
+       KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_KASAN_GENERIC);
 
        /*
         * Allocate 1 more byte, which causes kzalloc to round up to 16 bytes;
 {
        long *bits;
 
-       /* This test is specifically crafted for the tag-based mode. */
-       if (IS_ENABLED(CONFIG_KASAN_GENERIC)) {
-               kunit_info(test, "CONFIG_KASAN_SW_TAGS required\n");
-               return;
-       }
+       /* This test is specifically crafted for tag-based modes. */
+       KASAN_TEST_NEEDS_CONFIG_OFF(test, CONFIG_KASAN_GENERIC);
 
        /* Allocation size will be rounded to up granule size, which is 16. */
        bits = kzalloc(sizeof(*bits), GFP_KERNEL);
 {
        void *area;
 
-       if (!IS_ENABLED(CONFIG_KASAN_VMALLOC)) {
-               kunit_info(test, "CONFIG_KASAN_VMALLOC is not enabled.");
-               return;
-       }
+       KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_KASAN_VMALLOC);
 
        /*
         * We have to be careful not to hit the guard page.