[#1378] differences between Module and Class ? — Mathieu Bouchard <matju@...>

25 messages 2003/08/11
[#1387] Re: differences between Module and Class ? — matz@... (Yukihiro Matsumoto) 2003/08/12

Hi,

[#1442] Re: differences between Module and Class ? — Mathieu Bouchard <matju@...> 2003/08/21

[#1406] _id2ref bug? — Ryan Pavlik <rpav@...>

While debugging some caching code, I've come across a segfault related

22 messages 2003/08/14
[#1407] Re: _id2ref bug? — matz@... (Yukihiro Matsumoto) 2003/08/14

Hi,

[#1413] Re: _id2ref bug? (REPRODUCED, short) — Ryan Pavlik <rpav@...> 2003/08/14

On Fri, 15 Aug 2003 01:57:18 +0900

Another Test::Unit patch...

From: "Nathaniel Talbott" <nathaniel@...>
Date: 2003-08-04 01:34:34 UTC
List: ruby-core #1334
I still can't commit (perhaps things are locked down in anticipation of the
release?). Anyhow, I've included another very small patch for Test::Unit.

Thanks,


Nathaniel

<:((><


Index: ChangeLog
===================================================================
RCS file: /src/ruby/ChangeLog,v
retrieving revision 1.2019
diff -u -r1.2019 ChangeLog
--- ChangeLog	4 Aug 2003 01:02:16 -0000	1.2019
+++ ChangeLog	4 Aug 2003 01:27:06 -0000
@@ -1,3 +1,8 @@
+Mon Aug  4 10:16:00 2003  Nathaniel Talbott  <ntalbott@ruby-lang.org>
+
+	* lib/test/unit/ui/console/testrunner.rb: Flushed io in the
+	  Console::TestRunner so that it will output immediately.
+
 Mon Aug  4 10:00:47 2003  Shugo Maeda  <shugo@ruby-lang.org>
 
 	* lib/net/imap.rb (receive_responses): raise exception to
Index: lib/test/unit/ui/console/testrunner.rb
===================================================================
RCS file: /src/ruby/lib/test/unit/ui/console/testrunner.rb,v
retrieving revision 1.1.1.2
diff -u -r1.1.1.2 testrunner.rb
--- lib/test/unit/ui/console/testrunner.rb	12 Feb 2003 04:22:33 -0000
1.1.1.2
+++ lib/test/unit/ui/console/testrunner.rb	4 Aug 2003 01:27:06 -0000
@@ -115,10 +115,12 @@
           
           def output(something, level=NORMAL)
             @io.puts(something) if (output?(level))
+	    @io.flush
           end
           
           def output_single(something, level=NORMAL)
             @io.write(something) if (output?(level))
+	    @io.flush
           end
           
           def output?(level)


In This Thread

Prev Next