mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 23:23:03 +00:00
33f44bfd3c
This is to align with kunit's terminology. Signed-off-by: Ian Rogers <irogers@google.com> Tested-by: Sohaib Mohamed <sohaib.amhmd@gmail.com> Acked-by: Jiri Olsa <jolsa@redhat.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Brendan Higgins <brendanhiggins@google.com> Cc: Daniel Latypov <dlatypov@google.com> Cc: David Gow <davidgow@google.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: Jin Yao <yao.jin@linux.intel.com> Cc: John Garry <john.garry@huawei.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Paul Clarke <pc@us.ibm.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Link: https://lore.kernel.org/r/20211104064208.3156807-6-irogers@google.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
46 lines
1.2 KiB
C
46 lines
1.2 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include "tests.h"
|
|
#include "session.h"
|
|
#include "debug.h"
|
|
#include "demangle-ocaml.h"
|
|
|
|
static int test__demangle_ocaml(struct test_suite *test __maybe_unused, int subtest __maybe_unused)
|
|
{
|
|
int ret = TEST_OK;
|
|
char *buf = NULL;
|
|
size_t i;
|
|
|
|
struct {
|
|
const char *mangled, *demangled;
|
|
} test_cases[] = {
|
|
{ "main",
|
|
NULL },
|
|
{ "camlStdlib__array__map_154",
|
|
"Stdlib.array.map_154" },
|
|
{ "camlStdlib__anon_fn$5bstdlib$2eml$3a334$2c0$2d$2d54$5d_1453",
|
|
"Stdlib.anon_fn[stdlib.ml:334,0--54]_1453" },
|
|
{ "camlStdlib__bytes__$2b$2b_2205",
|
|
"Stdlib.bytes.++_2205" },
|
|
};
|
|
|
|
for (i = 0; i < ARRAY_SIZE(test_cases); i++) {
|
|
buf = ocaml_demangle_sym(test_cases[i].mangled);
|
|
if ((buf == NULL && test_cases[i].demangled != NULL)
|
|
|| (buf != NULL && test_cases[i].demangled == NULL)
|
|
|| (buf != NULL && strcmp(buf, test_cases[i].demangled))) {
|
|
pr_debug("FAILED: %s: %s != %s\n", test_cases[i].mangled,
|
|
buf == NULL ? "(null)" : buf,
|
|
test_cases[i].demangled == NULL ? "(null)" : test_cases[i].demangled);
|
|
ret = TEST_FAIL;
|
|
}
|
|
free(buf);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
DEFINE_SUITE("Demangle OCaml", demangle_ocaml);
|