[svn:parrot] r47105 - in trunk: . t/dynoplibs t/op

plobsing at svn.parrot.org plobsing at svn.parrot.org
Sat May 29 07:06:20 UTC 2010


Author: plobsing
Date: Sat May 29 07:06:20 2010
New Revision: 47105
URL: https://trac.parrot.org/parrot/changeset/47105

Log:
move dynops dependant test out of coretest

Added:
   trunk/t/dynoplibs/time_old.t
Deleted:
   trunk/t/op/time_old.t
Modified:
   trunk/MANIFEST

Modified: trunk/MANIFEST
==============================================================================
--- trunk/MANIFEST	Sat May 29 07:05:24 2010	(r47104)
+++ trunk/MANIFEST	Sat May 29 07:06:20 2010	(r47105)
@@ -1,7 +1,7 @@
 # ex: set ro:
 # $Id$
 #
-# generated by tools/dev/mk_manifest_and_skip.pl Sat May 29 06:49:43 2010 UT
+# generated by tools/dev/mk_manifest_and_skip.pl Sat May 29 07:05:55 2010 UT
 #
 # See below for documentation on the format of this file.
 #
@@ -1662,6 +1662,7 @@
 t/dynoplibs/string_pmc_bitwise.t                            [test]
 t/dynoplibs/sysinfo.t                                       [test]
 t/dynoplibs/time.t                                          [test]
+t/dynoplibs/time_old.t                                      [test]
 t/dynoplibs/trans-infnan.t                                  [test]
 t/dynoplibs/trans-old.t                                     [test]
 t/dynoplibs/trans.t                                         [test]
@@ -1824,7 +1825,6 @@
 t/op/string_mem.t                                           [test]
 t/op/stringu.t                                              [test]
 t/op/time.t                                                 [test]
-t/op/time_old.t                                             [test]
 t/op/vivify.t                                               [test]
 t/perl/Parrot_Distribution.t                                [test]
 t/perl/Parrot_Docs.t                                        [test]

Added: trunk/t/dynoplibs/time_old.t
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ trunk/t/dynoplibs/time_old.t	Sat May 29 07:06:20 2010	(r47105)
@@ -0,0 +1,47 @@
+#!perl
+# Copyright (C) 2001-2009, Parrot Foundation.
+# $Id: time_old.t 47051 2010-05-27 08:45:23Z plobsing $
+
+use strict;
+use warnings;
+use lib qw( . lib ../lib ../../lib );
+use Test::More;
+use Parrot::Test tests => 1;
+
+=head1 NAME
+
+t/op/time.t - Time and Sleep
+
+=head1 SYNOPSIS
+
+    % prove t/op/time.t
+
+=head1 DESCRIPTION
+
+Tests the C<time> and C<sleep> operations.
+
+=cut
+
+my $year;
+( undef, undef, undef, undef, undef, $year ) = localtime();
+$year += 1900;
+
+# don't run this test 1 tick before the year changes #'
+
+pasm_output_is( <<'CODE', $year, "decodelocaltime" );
+.loadlib 'sys_ops'
+    time I0
+    decodelocaltime P0, I0
+    .include "tm.pasm"
+    set I0, P0[.TM_YEAR]
+    print I0
+    end
+CODE
+
+
+# Local Variables:
+#   mode: cperl
+#   cperl-indent-level: 4
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4:

Deleted: trunk/t/op/time_old.t
==============================================================================
--- trunk/t/op/time_old.t	Sat May 29 07:06:20 2010	(r47104)
+++ /dev/null	00:00:00 1970	(deleted)
@@ -1,47 +0,0 @@
-#!perl
-# Copyright (C) 2001-2009, Parrot Foundation.
-# $Id$
-
-use strict;
-use warnings;
-use lib qw( . lib ../lib ../../lib );
-use Test::More;
-use Parrot::Test tests => 1;
-
-=head1 NAME
-
-t/op/time.t - Time and Sleep
-
-=head1 SYNOPSIS
-
-    % prove t/op/time.t
-
-=head1 DESCRIPTION
-
-Tests the C<time> and C<sleep> operations.
-
-=cut
-
-my $year;
-( undef, undef, undef, undef, undef, $year ) = localtime();
-$year += 1900;
-
-# don't run this test 1 tick before the year changes #'
-
-pasm_output_is( <<'CODE', $year, "decodelocaltime" );
-.loadlib 'sys_ops'
-    time I0
-    decodelocaltime P0, I0
-    .include "tm.pasm"
-    set I0, P0[.TM_YEAR]
-    print I0
-    end
-CODE
-
-
-# Local Variables:
-#   mode: cperl
-#   cperl-indent-level: 4
-#   fill-column: 100
-# End:
-# vim: expandtab shiftwidth=4:


More information about the parrot-commits mailing list