[前][次][番号順一覧][スレッド一覧]

ruby-changes:21346

From: naruse <ko1@a...>
Date: Tue, 4 Oct 2011 11:45:05 +0900 (JST)
Subject: [ruby-changes:21346] naruse:r33395 (trunk): * gc.c (rb_gc_set_params): ruby_verbose can be Qnil, so use RTEST.

naruse	2011-10-04 11:44:55 +0900 (Tue, 04 Oct 2011)

  New Revision: 33395

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=33395

  Log:
    * gc.c (rb_gc_set_params): ruby_verbose can be Qnil, so use RTEST.

  Modified files:
    trunk/ChangeLog
    trunk/gc.c
    trunk/test/ruby/test_gc.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 33394)
+++ ChangeLog	(revision 33395)
@@ -1,3 +1,7 @@
+Tue Oct  4 11:44:10 2011  NARUSE, Yui  <naruse@r...>
+
+	* gc.c (rb_gc_set_params): ruby_verbose can be Qnil, so use RTEST.
+
 Tue Oct  4 08:33:41 2011  Eric Hodel  <drbrain@s...>
 
 	* ext/etc/etc.c:  Document Etc, Etc.sysconfdir, Etc.systmpdir.  Patch
Index: gc.c
===================================================================
--- gc.c	(revision 33394)
+++ gc.c	(revision 33395)
@@ -427,7 +427,7 @@
     malloc_limit_ptr = getenv("RUBY_GC_MALLOC_LIMIT");
     if (malloc_limit_ptr != NULL) {
 	int malloc_limit_i = atoi(malloc_limit_ptr);
-	if (ruby_verbose)
+	if (RTEST(ruby_verbose))
 	    fprintf(stderr, "malloc_limit=%d (%d)\n",
 		    malloc_limit_i, initial_malloc_limit);
 	if (malloc_limit_i > 0) {
@@ -438,7 +438,7 @@
     heap_min_slots_ptr = getenv("RUBY_HEAP_MIN_SLOTS");
     if (heap_min_slots_ptr != NULL) {
 	int heap_min_slots_i = atoi(heap_min_slots_ptr);
-	if (ruby_verbose)
+	if (RTEST(ruby_verbose))
 	    fprintf(stderr, "heap_min_slots=%d (%d)\n",
 		    heap_min_slots_i, initial_heap_min_slots);
 	if (heap_min_slots_i > 0) {
@@ -450,7 +450,7 @@
     free_min_ptr = getenv("RUBY_FREE_MIN");
     if (free_min_ptr != NULL) {
 	int free_min_i = atoi(free_min_ptr);
-	if (ruby_verbose)
+	if (RTEST(ruby_verbose))
 	    fprintf(stderr, "free_min=%d (%d)\n", free_min_i, initial_free_min);
 	if (free_min_i > 0) {
 	    initial_free_min = free_min_i;
Index: test/ruby/test_gc.rb
===================================================================
--- test/ruby/test_gc.rb	(revision 33394)
+++ test/ruby/test_gc.rb	(revision 33395)
@@ -93,6 +93,8 @@
       "RUBY_HEAP_MIN_SLOTS" => "100000"
     }
     assert_in_out_err([env, "-e", "exit"], "", [], [], "[ruby-core:39795]")
+    assert_in_out_err([env, "-W0", "-e", "exit"], "", [], [], "[ruby-core:39795]")
+    assert_in_out_err([env, "-W1", "-e", "exit"], "", [], [], "[ruby-core:39795]")
     assert_in_out_err([env, "-w", "-e", "exit"], "", [], /heap_min_slots=100000/, "[ruby-core:39795]")
   end
 end

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]