From 22559cc0994c6bd7cabbe4e234be183a067b933b Mon Sep 17 00:00:00 2001 From: Adrian Prantl Date: Thu, 20 Feb 2014 19:55:44 +0000 Subject: test_debuginfo.pl: Make failures easier to debug by printing the debugger output. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201809 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/test_debuginfo.pl | 2 ++ 1 file changed, 2 insertions(+) (limited to 'utils') diff --git a/utils/test_debuginfo.pl b/utils/test_debuginfo.pl index a6b6137c1c..aaf90d9546 100755 --- a/utils/test_debuginfo.pl +++ b/utils/test_debuginfo.pl @@ -71,6 +71,8 @@ system("$my_debugger $debugger_options $debugger_script_file $executable_file > # validate output. system("FileCheck", "-input-file", "$output_file", "$testcase_file"); if ($?>>8 == 1) { + print "Debugger output was:\n"; + system("cat", "$output_file"); exit 1; } else { -- cgit v1.2.3