From 7cd25b07a12a1a48cc617465b47920ed8650c581 Mon Sep 17 00:00:00 2001 From: William Skellenger Date: Thu, 4 May 2017 09:36:12 -0400 Subject: [PATCH] Fix problem of getting .results files with zero length --- scripts/create_makefile.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/create_makefile.rb b/scripts/create_makefile.rb index 8d42a98..5240730 100644 --- a/scripts/create_makefile.rb +++ b/scripts/create_makefile.rb @@ -150,7 +150,7 @@ File.open(TEST_MAKEFILE, "w") do |mkfile| # Run test suite and generate report mkfile.puts "#{test_results}: #{test_bin}" - mkfile.puts "\t-#{test_bin} &> #{test_results}" + mkfile.puts "\t-#{test_bin} > #{test_results} 2>&1" mkfile.puts "" test_targets << test_bin