[svn:parrot] r44338 - trunk/t/op
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Tue Feb 23 00:46:08 UTC 2010
Author: mikehh
Date: Tue Feb 23 00:46:07 2010
New Revision: 44338
URL: https://trac.parrot.org/parrot/changeset/44338
Log:
fix codetest failures - trailing whitespace
Modified:
trunk/t/op/64bit.t
trunk/t/op/annotate.t
trunk/t/op/cc_params.t
trunk/t/op/integer.t
Modified: trunk/t/op/64bit.t
==============================================================================
--- trunk/t/op/64bit.t Tue Feb 23 00:39:07 2010 (r44337)
+++ trunk/t/op/64bit.t Tue Feb 23 00:46:07 2010 (r44338)
@@ -1,5 +1,5 @@
#!parrot
-# Copyright (C) 2001-2009, Parrot Foundation.
+# Copyright (C) 2001-2010, Parrot Foundation.
# $Id$
=head1 NAME
@@ -26,7 +26,7 @@
interp = getinterp
.local pmc config
config = interp[.IGLOBALS_CONFIG_HASH]
- .local int intvalsize
+ .local int intvalsize
intvalsize = config['intvalsize']
plan(5)
@@ -47,14 +47,14 @@
set $I0, 0xffffffffffffffff
is( $I0, -1, 'bitops64' )
-
+
set $I1, 0x00000000ffffffff
is( $I1, 4294967295, 'bitops64' )
-
+
set $I0, $I1
shl $I0, $I0, 32
is( $I0, -4294967296, 'bitops64' )
-
+
band $I2, $I0, $I1
is( $I2, 0, 'bitops64' )
Modified: trunk/t/op/annotate.t
==============================================================================
--- trunk/t/op/annotate.t Tue Feb 23 00:39:07 2010 (r44337)
+++ trunk/t/op/annotate.t Tue Feb 23 00:46:07 2010 (r44338)
@@ -1,5 +1,5 @@
#! parrot
-# Copyright (C) 2009, Parrot Foundation.
+# Copyright (C) 2009-2010, Parrot Foundation.
# $Id$
=head1 NAME
@@ -218,7 +218,7 @@
.get_results($P3)
pop_eh
$P3 = $P3.'backtrace'()
-
+
$P4 = $P3[0]
$P4 = $P4['annotations']
$S0 = $P4['file']
@@ -236,7 +236,7 @@
# Local Variables:
-# mode: pir
+# mode: pir
# fill-column: 100
# End:
# vim: expandtab shiftwidth=4 ft=pir:
Modified: trunk/t/op/cc_params.t
==============================================================================
--- trunk/t/op/cc_params.t Tue Feb 23 00:39:07 2010 (r44337)
+++ trunk/t/op/cc_params.t Tue Feb 23 00:46:07 2010 (r44338)
@@ -1,5 +1,5 @@
#!parrot
-# Copyright (C) 2009, Parrot Foundation.
+# Copyright (C) 2009-2010, Parrot Foundation.
# $Id$
=head1 NAME
@@ -67,7 +67,7 @@
.namespace ['OMGClass']
.sub 'lolmethod' :method
.param pmc sig :call_sig
-
+
# Self is set up correctly.
$S0 = typeof self
is('OMGClass', $S0)
@@ -88,7 +88,7 @@
.sub 'wtfmethod' :method
.param pmc sig :call_sig
-
+
# Self is set up correctly.
$S0 = typeof self
is('OMGClass', $S0)
Modified: trunk/t/op/integer.t
==============================================================================
--- trunk/t/op/integer.t Tue Feb 23 00:39:07 2010 (r44337)
+++ trunk/t/op/integer.t Tue Feb 23 00:46:07 2010 (r44338)
@@ -1,5 +1,5 @@
#!parrot
-# Copyright (C) 2001-2009, Parrot Foundation.
+# Copyright (C) 2001-2010, Parrot Foundation.
# $Id$
=head1 NAME
@@ -691,7 +691,7 @@
$I2 = xor $I1, $I1
is($I2, 0, 'xor - nilpotent on 2')
-
+
$I2 = xor $I2, $I2
is($I2, 0, 'xor - nilpotent on other')
.end
More information about the parrot-commits
mailing list