Loading...
1// SPDX-License-Identifier: GPL-2.0
2#include "tests.h"
3#include "debug.h"
4#include "util.h"
5#include "c++/clang-c.h"
6#include <linux/kernel.h>
7
8static struct {
9 int (*func)(void);
10 const char *desc;
11} clang_testcase_table[] = {
12#ifdef HAVE_LIBCLANGLLVM_SUPPORT
13 {
14 .func = test__clang_to_IR,
15 .desc = "builtin clang compile C source to IR",
16 },
17 {
18 .func = test__clang_to_obj,
19 .desc = "builtin clang compile C source to ELF object",
20 },
21#endif
22};
23
24int test__clang_subtest_get_nr(void)
25{
26 return (int)ARRAY_SIZE(clang_testcase_table);
27}
28
29const char *test__clang_subtest_get_desc(int i)
30{
31 if (i < 0 || i >= (int)ARRAY_SIZE(clang_testcase_table))
32 return NULL;
33 return clang_testcase_table[i].desc;
34}
35
36#ifndef HAVE_LIBCLANGLLVM_SUPPORT
37int test__clang(struct test *test __maybe_unused, int i __maybe_unused)
38{
39 return TEST_SKIP;
40}
41#else
42int test__clang(struct test *test __maybe_unused, int i)
43{
44 if (i < 0 || i >= (int)ARRAY_SIZE(clang_testcase_table))
45 return TEST_FAIL;
46 return clang_testcase_table[i].func();
47}
48#endif
1// SPDX-License-Identifier: GPL-2.0
2#include "tests.h"
3#include "c++/clang-c.h"
4#include <linux/kernel.h>
5
6#ifndef HAVE_LIBCLANGLLVM_SUPPORT
7static int test__clang_to_IR(struct test_suite *test __maybe_unused,
8 int subtest __maybe_unused)
9{
10 return TEST_SKIP;
11}
12
13static int test__clang_to_obj(struct test_suite *test __maybe_unused,
14 int subtest __maybe_unused)
15{
16 return TEST_SKIP;
17}
18#endif
19
20static struct test_case clang_tests[] = {
21 TEST_CASE_REASON("builtin clang compile C source to IR", clang_to_IR,
22 "not compiled in"),
23 TEST_CASE_REASON("builtin clang compile C source to ELF object",
24 clang_to_obj,
25 "not compiled in"),
26 { .name = NULL, }
27};
28
29struct test_suite suite__clang = {
30 .desc = "builtin clang support",
31 .test_cases = clang_tests,
32};