From 39c6b9d9b127f98363da2dd4302aa535a2b1c812 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Wed, 21 Nov 2001 02:40:53 +0000 Subject: [PATCH] Need to define application.root property for things that want to use a resource manager. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@634 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- tests/bin/runjava | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/bin/runjava b/tests/bin/runjava index 9c985127b..4a8b9f827 100755 --- a/tests/bin/runjava +++ b/tests/bin/runjava @@ -13,6 +13,7 @@ pop(@parts); my $root = join("/", @parts); # but we're in the test directory, so we want up one +$realroot = $root; $root = "$root/.."; # make sure JAVA_HOME is set @@ -71,7 +72,7 @@ foreach $dir (@dirs) { $classpath = "$classpath:$jlib"; # specify our server root (this is for server code) -my $rootarg = "-Droot=$root"; +my $rootarg = "-Dapplication.root=$realroot"; my $pid_file = undef; my $i = 0;