Merge branch 'overlayfs-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mszer...
[cascardo/linux.git] / tools / perf / tests / builtin-test.c
index 5781c16..10eb306 100644 (file)
@@ -213,6 +213,18 @@ static struct test generic_tests[] = {
                .desc = "Test backward reading from ring buffer",
                .func = test__backward_ring_buffer,
        },
+       {
+               .desc = "Test cpu map print",
+               .func = test__cpu_map_print,
+       },
+       {
+               .desc = "Test SDT event probing",
+               .func = test__sdt_event,
+       },
+       {
+               .desc = "Test is_printable_array function",
+               .func = test__is_printable_array,
+       },
        {
                .func = NULL,
        },
@@ -254,7 +266,7 @@ static int run_test(struct test *test, int subtest)
 
        if (child < 0) {
                pr_err("failed to fork test: %s\n",
-                       strerror_r(errno, sbuf, sizeof(sbuf)));
+                       str_error_r(errno, sbuf, sizeof(sbuf)));
                return -1;
        }