Commit 353dfaaa authored by Lucas De Marchi's avatar Lucas De Marchi Committed by Rodrigo Vivi
Browse files

drm/xe: Fix kunit integration due to missing prototypes



In order to avoid  -Werror=missing-prototypes, add the prototypes
in a separate tests/<test-name>_test.h file that is included by both
the implementation (tests/xe_<testname>.c, injected in xe.ko) and the
kunit module (tests/xe_<testname>_test.c -> xe-<testname>-test.ko).

v2: Add header and don't add ifdef to files that are already not built
when not using kunit (Matt Auld)

Signed-off-by: default avatarLucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: default avatarMatthew Auld <matthew.auld@intel.com>
Signed-off-by: default avatarRodrigo Vivi <rodrigo.vivi@intel.com>
parent 5b7e50e2
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -5,6 +5,8 @@

#include <kunit/test.h>

#include "tests/xe_bo_test.h"

#include "xe_bo_evict.h"
#include "xe_pci.h"

+2 −3
Original line number Diff line number Diff line
@@ -3,10 +3,9 @@
 * Copyright © 2022 Intel Corporation
 */

#include <kunit/test.h>
#include "xe_bo_test.h"

void xe_ccs_migrate_kunit(struct kunit *test);
void xe_bo_evict_kunit(struct kunit *test);
#include <kunit/test.h>

static struct kunit_case xe_bo_tests[] = {
	KUNIT_CASE(xe_ccs_migrate_kunit),
+14 −0
Original line number Diff line number Diff line
/* SPDX-License-Identifier: GPL-2.0 AND MIT */
/*
 * Copyright © 2023 Intel Corporation
 */

#ifndef __XE_BO_TEST_H__
#define __XE_BO_TEST_H__

struct kunit;

void xe_ccs_migrate_kunit(struct kunit *test);
void xe_bo_evict_kunit(struct kunit *test);

#endif
+2 −0
Original line number Diff line number Diff line
@@ -5,6 +5,8 @@

#include <kunit/test.h>

#include "tests/xe_dma_buf_test.h"

#include "xe_pci.h"

static bool p2p_enabled(struct dma_buf_test_params *params)
+2 −2
Original line number Diff line number Diff line
@@ -3,9 +3,9 @@
 * Copyright © 2022 Intel Corporation
 */

#include <kunit/test.h>
#include "xe_dma_buf_test.h"

void xe_dma_buf_kunit(struct kunit *test);
#include <kunit/test.h>

static struct kunit_case xe_dma_buf_tests[] = {
	KUNIT_CASE(xe_dma_buf_kunit),
Loading