I am running few tests using watir-webdriver[ruby], and in those tests I have added few puts statements which will print to the console. When running in terminal/command prompt, the messages are printed to the console immediately.
But when I run the same tests from Hudson, the print does not happen in real time. Instead, it will wait till the job completes and at the end it will dump all the print at one shot.
This way, I am not able to check if my tests are running fine and their status in real time.
Are there any solutions for this?
Thanks Sudhi
Update:
Adam, This did now work for me. My code snippet looks like this.
stdout.sync = true
class TC_MyTest < Test::Unit::TestCase
$stdout.sync = true
def test_sample
$i=0
@@log.debug "Running the scenario = "+@@SCENARIO
puts "Running the scenario = "+@@SCENARIO
while $i<@@LOOPCOUNT
@@log.debug "Running the loop # "+$i.to_s
puts "Running the loop # "+$i.to_s
# Clean up the system
killOldProcesses()
end
end
end