Move internal headers to 'src/' dir
[lttng-ust.git] / tests / unit / ust-elf / ust-elf.c
index 3ab1573e54e858ce59ace68d568b35dddcc65136..7e924a9099b563852a8d7875e0983e19e16beb00 100644 (file)
@@ -4,13 +4,14 @@
  * Copyright (C) 2015 Antoine Busque <abusque@efficios.com>
  */
 
+#include <inttypes.h>
 #include <limits.h>
 #include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 
-#include <lttng/ust-elf.h>
+#include "common/elf.h"
 #include "tap.h"
 
 #define NUM_ARCH 4
@@ -76,7 +77,7 @@ void test_elf(const char *test_dir, const char *arch, uint64_t exp_memsz,
        ret = lttng_ust_elf_get_memsz(elf, &memsz);
        ok(ret == 0, "lttng_ust_elf_get_memsz returned successfully");
        ok(memsz == exp_memsz,
-               "memsz - expected: %lu, got: %lu",
+               "memsz - expected: %" PRIu64 ", got: %" PRIu64,
                exp_memsz, memsz);
 
        ret = lttng_ust_elf_get_build_id(elf, &build_id, &build_id_len,
@@ -84,7 +85,7 @@ void test_elf(const char *test_dir, const char *arch, uint64_t exp_memsz,
        ok(ret == 0, "lttng_ust_elf_get_build_id returned successfully");
        ok(has_build_id == 1, "build id marked as found");
        ok(build_id_len == BUILD_ID_LEN,
-               "build_id_len - expected: %u, got: %u",
+               "build_id_len - expected: %u, got: %zu",
                BUILD_ID_LEN, build_id_len);
        ok(memcmp(build_id, exp_build_id, build_id_len) == 0,
                "build_id has expected value");
This page took 0.023488 seconds and 4 git commands to generate.