From 8fa0fda8e1b6aa0a759990b3d32b78bb08065e0f Mon Sep 17 00:00:00 2001 From: buzbee Date: Wed, 27 Jun 2012 15:44:52 -0700 Subject: Quick compiler: support for arrays, misc. Continuing to flesh out support in the Quick compiler. Mostly array-related. Also, added runtest 028-array-write to the set of passing tests. Change-Id: I3c8eaf4bb14e9327e4f5fc48de73c85a5d3efb54 --- test/028-array-write/src/Main.java | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'test/028-array-write/src/Main.java') diff --git a/test/028-array-write/src/Main.java b/test/028-array-write/src/Main.java index 9e2826ea56..2618ff8aa4 100644 --- a/test/028-array-write/src/Main.java +++ b/test/028-array-write/src/Main.java @@ -70,13 +70,16 @@ public class Main { report(start, end); } + public static void array_028() { + writeTest(); + copyTest(); + System.out.println("Done!"); + } + public static void main(String[] args) { if ((args.length >= 1) && args[0].equals("--timing")) { timing = true; } - - writeTest(); - copyTest(); - System.out.println("Done!"); + array_028(); } } -- cgit v1.2.3-59-g8ed1b