[svn:parrot] r43661 - in branches/kill_array_pmc/t: compilers/json library

bacek at svn.parrot.org bacek at svn.parrot.org
Sun Jan 31 10:06:07 UTC 2010


Author: bacek
Date: Sun Jan 31 10:06:04 2010
New Revision: 43661
URL: https://trac.parrot.org/parrot/changeset/43661

Log:
Replace usage of Array with RPA in test_more.t and from_parrot.t

Modified:
   branches/kill_array_pmc/t/compilers/json/from_parrot.t
   branches/kill_array_pmc/t/library/test_more.t

Modified: branches/kill_array_pmc/t/compilers/json/from_parrot.t
==============================================================================
--- branches/kill_array_pmc/t/compilers/json/from_parrot.t	Sun Jan 31 10:05:32 2010	(r43660)
+++ branches/kill_array_pmc/t/compilers/json/from_parrot.t	Sun Jan 31 10:06:04 2010	(r43661)
@@ -139,7 +139,7 @@
 .sub test_create_json_of_an_array
     .local pmc array
 
-    new array, 'Array'
+    new array, 'ResizablePMCArray'
     array = 10
     array[0] = 0
     array[1] = 1
@@ -162,7 +162,7 @@
 .sub test_create_pretty_json_of_an_array
     .local pmc array
 
-    new array, 'Array'
+    new array, 'ResizablePMCArray'
     array = 10
     array[0] = 0
     array[1] = 1
@@ -198,7 +198,7 @@
 .sub test_create_json_of_array_keep_element_ordering
     .local pmc array
 
-    new array, 'Array'
+    new array, 'ResizablePMCArray'
     array = 6
     array[0] = 35
     array[1] = 1
@@ -226,7 +226,7 @@
 .sub test_create_json_of_a_mixed_array
     .local pmc array
 
-    new array, 'Array'
+    new array, 'ResizablePMCArray'
     array = 6
     array[0] = 0
     array[1] = 1500e-2

Modified: branches/kill_array_pmc/t/library/test_more.t
==============================================================================
--- branches/kill_array_pmc/t/library/test_more.t	Sun Jan 31 10:05:32 2010	(r43660)
+++ branches/kill_array_pmc/t/library/test_more.t	Sun Jan 31 10:06:04 2010	(r43661)
@@ -661,9 +661,9 @@
 
     .local pmc left_array
     .local pmc right_array
-    left_array  = new 'Array'
+    left_array  = new 'ResizablePMCArray'
     left_array  = 3
-    right_array = new 'Array'
+    right_array = new 'ResizablePMCArray'
     right_array = 3
 
     left[  'array' ] = left_array


More information about the parrot-commits mailing list