Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.11 20 lines 378 B view raw
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright © 2022 Intel Corporation 4 */ 5 6#include "xe_dma_buf_test.h" 7 8#include <kunit/test.h> 9 10static struct kunit_case xe_dma_buf_tests[] = { 11 KUNIT_CASE(xe_dma_buf_kunit), 12 {} 13}; 14 15static struct kunit_suite xe_dma_buf_test_suite = { 16 .name = "xe_dma_buf", 17 .test_cases = xe_dma_buf_tests, 18}; 19 20kunit_test_suite(xe_dma_buf_test_suite);