summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-03-21 21:42:23 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-03-21 21:42:23 +0000
commitc85be4258933c5e0e9104e7b71772ff86509ec07 (patch)
treeb73cec3c6c0f68960a295eadca4640549ec42227
parent78df33a0c14bc330f983f4a27c334c2cfbec9c2e (diff)
* lib/test/unit/parallel.rb: remove unused variable.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31142 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--ext/date/date_core.c84
-rw-r--r--lib/test/unit/parallel.rb2
3 files changed, 47 insertions, 44 deletions
diff --git a/ChangeLog b/ChangeLog
index 7262f5b752..5a3a40e927 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Mar 22 06:41:37 2011 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * lib/test/unit/parallel.rb: remove unused variable.
+
Tue Mar 22 06:19:42 2011 NARUSE, Yui <naruse@ruby-lang.org>
* enc/utf_16le.c: surpress warning: shorten-64-to-32.
@@ -8,7 +12,6 @@ Tue Mar 22 06:19:42 2011 NARUSE, Yui <naruse@ruby-lang.org>
* parse.y (Init_ripper): surpress warning: unused value.
-
Mon Mar 21 11:21:32 2011 Shota Fukumori <sorah@tubusu.net>
* lib/test/unit.rb: Refactoring. Unified if and elsif.
diff --git a/ext/date/date_core.c b/ext/date/date_core.c
index d726487396..e75c666e14 100644
--- a/ext/date/date_core.c
+++ b/ext/date/date_core.c
@@ -42,10 +42,10 @@
#define DAY_IN_NANOSECONDS 86400000000000LL
/* copied from time.c */
-#define NDIV(x,y) (-(-((x)+1)/(y))-1)
-#define NMOD(x,y) ((y)-(-((x)+1)%(y))-1)
-#define DIV(n,d) ((n)<0 ? NDIV((n),(d)) : (n)/(d))
-#define MOD(n,d) ((n)<0 ? NMOD((n),(d)) : (n)%(d))
+#define NDIV(x,y) ((int)(-(-((x)+1)/(y))-1))
+#define NMOD(x,y) ((int)((y)-(-((x)+1)%(y))-1))
+#define DIV(n,d) ((int)((n)<0 ? NDIV((n),(d)) : (n)/(d)))
+#define MOD(n,d) ((int)((n)<0 ? NMOD((n),(d)) : (n)%(d)))
union DateData
{
@@ -305,7 +305,7 @@ jd_to_ordinal(long jd, double sg, int *ry, int *rd)
jd_to_civil(jd, sg, ry, &rm2, &rd2);
find_fdoy(*ry, sg, &rjd, &ns);
- *rd = jd - rjd + 1;
+ *rd = (int)(jd - rjd) + 1;
}
static void
@@ -820,11 +820,11 @@ date_s_valid_civil_p(int argc, VALUE *argv, VALUE klass)
switch (argc) {
case 4:
case 3:
- d = NUM2LONG(vd);
+ d = NUM2INT(vd);
case 2:
- m = NUM2LONG(vm);
+ m = NUM2INT(vm);
case 1:
- y = NUM2LONG(vy);
+ y = NUM2INT(vy);
if (!LIGHTABLE_YEAR(y))
return cforwardv("valid_civil_r?");
}
@@ -868,9 +868,9 @@ date_s_valid_ordinal_p(int argc, VALUE *argv, VALUE klass)
switch (argc) {
case 3:
case 2:
- d = NUM2LONG(vd);
+ d = NUM2INT(vd);
case 1:
- y = NUM2LONG(vy);
+ y = NUM2INT(vy);
if (!LIGHTABLE_YEAR(y))
return cforwardv("valid_ordinal_r?");
}
@@ -911,11 +911,11 @@ date_s_valid_commercial_p(int argc, VALUE *argv, VALUE klass)
switch (argc) {
case 4:
case 3:
- d = NUM2LONG(vd);
+ d = NUM2INT(vd);
case 2:
- w = NUM2LONG(vw);
+ w = NUM2INT(vw);
case 1:
- y = NUM2LONG(vy);
+ y = NUM2INT(vy);
if (!LIGHTABLE_CWYEAR(y))
return cforwardv("valid_commercial_r?");
}
@@ -1128,9 +1128,9 @@ date_s_ordinal(int argc, VALUE *argv, VALUE klass)
switch (argc) {
case 3:
case 2:
- d = NUM2LONG(vd);
+ d = NUM2INT(vd);
case 1:
- y = NUM2LONG(vy);
+ y = NUM2INT(vy);
if (!LIGHTABLE_YEAR(y))
return cforwardv("ordinal_r");
}
@@ -1195,11 +1195,11 @@ date_s_civil(int argc, VALUE *argv, VALUE klass)
switch (argc) {
case 4:
case 3:
- d = NUM2LONG(vd);
+ d = NUM2INT(vd);
case 2:
- m = NUM2LONG(vm);
+ m = NUM2INT(vm);
case 1:
- y = NUM2LONG(vy);
+ y = NUM2INT(vy);
if (!LIGHTABLE_YEAR(y))
return cforwardv("civil_r");
}
@@ -1271,11 +1271,11 @@ date_s_commercial(int argc, VALUE *argv, VALUE klass)
switch (argc) {
case 4:
case 3:
- d = NUM2LONG(vd);
+ d = NUM2INT(vd);
case 2:
- w = NUM2LONG(vw);
+ w = NUM2INT(vw);
case 1:
- y = NUM2LONG(vy);
+ y = NUM2INT(vy);
if (!LIGHTABLE_CWYEAR(y))
return cforwardv("commercial_r");
}
@@ -2697,11 +2697,11 @@ datetime_s_jd(int argc, VALUE *argv, VALUE klass)
if (!daydiff_to_sec(vof, &rof))
return cforwardv("jd_r");
case 4:
- s = NUM2LONG(vs);
+ s = NUM2INT(vs);
case 3:
- min = NUM2LONG(vmin);
+ min = NUM2INT(vmin);
case 2:
- h = NUM2LONG(vh);
+ h = NUM2INT(vh);
case 1:
jd = NUM2LONG(vjd);
if (!LIGHTABLE_JD(jd))
@@ -2774,15 +2774,15 @@ datetime_s_ordinal(int argc, VALUE *argv, VALUE klass)
if (!daydiff_to_sec(vof, &rof))
return cforwardv("ordinal_r");
case 5:
- s = NUM2LONG(vs);
+ s = NUM2INT(vs);
case 4:
- min = NUM2LONG(vmin);
+ min = NUM2INT(vmin);
case 3:
- h = NUM2LONG(vh);
+ h = NUM2INT(vh);
case 2:
- d = NUM2LONG(vd);
+ d = NUM2INT(vd);
case 1:
- y = NUM2LONG(vy);
+ y = NUM2INT(vy);
if (!LIGHTABLE_YEAR(y))
return cforwardv("ordinal_r");
}
@@ -2864,17 +2864,17 @@ datetime_s_civil(int argc, VALUE *argv, VALUE klass)
if (!daydiff_to_sec(vof, &rof))
return cforwardv("civil_r");
case 6:
- s = NUM2LONG(vs);
+ s = NUM2INT(vs);
case 5:
- min = NUM2LONG(vmin);
+ min = NUM2INT(vmin);
case 4:
- h = NUM2LONG(vh);
+ h = NUM2INT(vh);
case 3:
- d = NUM2LONG(vd);
+ d = NUM2INT(vd);
case 2:
- m = NUM2LONG(vm);
+ m = NUM2INT(vm);
case 1:
- y = NUM2LONG(vy);
+ y = NUM2INT(vy);
if (!LIGHTABLE_YEAR(y))
return cforwardv("civil_r");
}
@@ -2967,17 +2967,17 @@ datetime_s_commercial(int argc, VALUE *argv, VALUE klass)
if (!daydiff_to_sec(vof, &rof))
return cforwardv("commercial_r");
case 6:
- s = NUM2LONG(vs);
+ s = NUM2INT(vs);
case 5:
- min = NUM2LONG(vmin);
+ min = NUM2INT(vmin);
case 4:
- h = NUM2LONG(vh);
+ h = NUM2INT(vh);
case 3:
- d = NUM2LONG(vd);
+ d = NUM2INT(vd);
case 2:
- w = NUM2LONG(vw);
+ w = NUM2INT(vw);
case 1:
- y = NUM2LONG(vy);
+ y = NUM2INT(vy);
if (!LIGHTABLE_CWYEAR(y))
return cforwardv("commercial_r");
}
@@ -3054,7 +3054,7 @@ datetime_s_now(int argc, VALUE *argv, VALUE klass)
if (s == 60)
s = 59;
#ifdef HAVE_STRUCT_TM_TM_GMTOFF
- of = tm.tm_gmtoff;
+ of = (int)tm.tm_gmtoff;
#else
of = (int)-timezone;
#endif
diff --git a/lib/test/unit/parallel.rb b/lib/test/unit/parallel.rb
index 90e418bf5f..e433779a2e 100644
--- a/lib/test/unit/parallel.rb
+++ b/lib/test/unit/parallel.rb
@@ -20,7 +20,7 @@ module Test
def _run_suites(suites, type)
suites.map do |suite|
- result = _run_suite(suite, type)
+ _run_suite(suite, type)
end
end