From: Mathieu Desnoyers Date: Mon, 31 Aug 2015 21:27:39 +0000 (-0400) Subject: Fix: test elf: handle NULL debug file X-Git-Url: http://git.efficios.com/?p=deliverable%2Flttng-ust.git;a=commitdiff_plain;h=bb4f2490384dfe242c89c9b4fcefaf4beb22c58b Fix: test elf: handle NULL debug file Signed-off-by: Mathieu Desnoyers --- diff --git a/tests/ust-elf/prog.c b/tests/ust-elf/prog.c index 5090bcf7..85b9c347 100644 --- a/tests/ust-elf/prog.c +++ b/tests/ust-elf/prog.c @@ -103,7 +103,7 @@ void test_elf(const char *test_dir, const char *arch, uint64_t exp_memsz, &has_debug_link); ok(ret == 0, "lttng_ust_elf_get_debug_link returned successfully"); ok(has_debug_link == 1, "debug link marked as found"); - ok(strcmp(dbg_file, DBG_FILE) == 0, + ok(dbg_file && strcmp(dbg_file, DBG_FILE) == 0, "debug link filename - expected: %s, got: %s", DBG_FILE, dbg_file); ok(crc == exp_crc,