From 581a739226381450ea2271cc794618043b6aeb4a Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Mon, 23 Jul 2012 20:54:17 +0000 Subject: Fix a "Bad fd number" error on some platforms due to a less portable redirection in the system call. Patch by Andy Gibbs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160644 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/test_debuginfo.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils/test_debuginfo.pl') diff --git a/utils/test_debuginfo.pl b/utils/test_debuginfo.pl index a03a117064..0832a330f4 100755 --- a/utils/test_debuginfo.pl +++ b/utils/test_debuginfo.pl @@ -49,7 +49,7 @@ if (!$my_debugger) { my $debugger_options = "-q -batch -n -x"; # run debugger and capture output. -system("$my_debugger $debugger_options $debugger_script_file $executable_file >& $output_file"); +system("$my_debugger $debugger_options $debugger_script_file $executable_file > $output_file 2>&1"); # validate output. system("FileCheck", "-input-file", "$output_file", "$testcase_file"); -- cgit v1.2.3