From 70d3120f32281980105169dee74440146e97702e Mon Sep 17 00:00:00 2001 From: Nick Alcock Date: Tue, 5 Jan 2021 17:11:20 +0000 Subject: libctf, testsuite: don't run without a suitable compiler We never actually check to see if the compiler supports CTF, or even if a suitable compiler exists. libctf/ChangeLog 2021-01-05 Nick Alcock * Makefile.am (BASEDIR): New. (BFDDIR): Likewise. (check-DEJAGNU): Add development.exp to prerequisites. (development.exp): New. (CONFIG_STATUS_DEPENDENCIES): New. (EXTRA_DEJAGNU_SITE_CONFIG): Likewise. (DISTCLEANFILES): Likewise. * Makefile.in: Regenerated. * testsuite/lib/ctf-lib.exp (check_ctf_available): Return boolean. * testsuite/libctf-lookup/lookup.exp: Call check_ctf_available. * testsuite/libctf-regression/regression.exp: Likewise. --- libctf/testsuite/libctf-lookup/lookup.exp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libctf/testsuite/libctf-lookup') diff --git a/libctf/testsuite/libctf-lookup/lookup.exp b/libctf/testsuite/libctf-lookup/lookup.exp index 51ad257..84ff46c 100644 --- a/libctf/testsuite/libctf-lookup/lookup.exp +++ b/libctf/testsuite/libctf-lookup/lookup.exp @@ -23,6 +23,11 @@ if ![is_elf_format] { return 0 } +if {![check_ctf_available]} { + unsupported "no CTF format support in the compiler" + return 0 +} + if {[info exists env(LC_ALL)]} { set old_lc_all $env(LC_ALL) } -- cgit v1.1