@@ -30,7 +30,7 @@ def execute_command_for_process(process_number, cmd)
30
30
print_chevron_msg ( process_number , "Custom env: #{ env . map { |k , v | "#{ k } =#{ v } " } . join ( ' ' ) } ; command: #{ cmd } " )
31
31
32
32
begin
33
- output = IO . popen ( env , "#{ cmd } 2>&1 | tee thread_ #{ process_number } .log " ) do |io |
33
+ output = IO . popen ( env , "#{ cmd } 2>&1" ) do |io |
34
34
print_chevron_msg ( process_number , "Pid: #{ io . pid } " )
35
35
show_output ( io , process_number )
36
36
end
@@ -75,6 +75,7 @@ def print_chevron_msg(chevron, line, io = $stdout)
75
75
end
76
76
77
77
def show_output ( io , process_number )
78
+ file = File . open ( "process_#{ process_number } .log" , 'w' )
78
79
remaining_part = ''
79
80
probable_finish = false
80
81
begin
@@ -86,6 +87,7 @@ def show_output(io, process_number)
86
87
lines . each do |line |
87
88
probable_finish = true if last_cucumber_line? ( line )
88
89
print_chevron_msg ( process_number , line )
90
+ file . write ( "#{ line } \n " )
89
91
end
90
92
end
91
93
rescue IO ::WaitReadable
@@ -105,6 +107,8 @@ def show_output(io, process_number)
105
107
return
106
108
ensure
107
109
print_chevron_msg ( process_number , remaining_part )
110
+ file . write ( "#{ remaining_part } " )
111
+ file . close unless file . nil?
108
112
end
109
113
end
110
114
0 commit comments