Mercurial > hg > Database > Alice
annotate src/alice/test/codesegment/remote/alpha/TestRemoteAlice.java @ 136:bb023f060f2f working
add different version test
author | sugi |
---|---|
date | Sun, 19 Aug 2012 21:31:21 +0900 |
parents | |
children |
rev | line source |
---|---|
136 | 1 package alice.test.codesegment.remote.alpha; |
2 | |
3 import alice.daemon.AliceDaemon; | |
4 import alice.datasegment.DataSegment; | |
5 | |
6 public class TestRemoteAlice { | |
7 | |
8 public static void main(String[] args) { | |
9 TestRemoteConfig conf = new TestRemoteConfig(args); | |
10 | |
11 new AliceDaemon(conf).listen(); | |
12 DataSegment.connect(conf.key, "", conf.hostname, conf.connectPort); | |
13 | |
14 new RemoteStartCodeSegment().execute(); | |
15 } | |
16 | |
17 } |