You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ace.apache.org by ja...@apache.org on 2012/04/18 10:44:50 UTC

svn commit: r1327425 - /ace/site/trunk/content/dev-doc/design/test-script.mdtext

Author: jawi
Date: Wed Apr 18 08:44:49 2012
New Revision: 1327425

URL: http://svn.apache.org/viewvc?rev=1327425&view=rev
Log:
Added concrete example to run the test with 10 targets.

Modified:
    ace/site/trunk/content/dev-doc/design/test-script.mdtext

Modified: ace/site/trunk/content/dev-doc/design/test-script.mdtext
URL: http://svn.apache.org/viewvc/ace/site/trunk/content/dev-doc/design/test-script.mdtext?rev=1327425&r1=1327424&r2=1327425&view=diff
==============================================================================
--- ace/site/trunk/content/dev-doc/design/test-script.mdtext (original)
+++ ace/site/trunk/content/dev-doc/design/test-script.mdtext Wed Apr 18 08:44:49 2012
@@ -21,3 +21,11 @@ To run:
 1. `ant unzip` will unzip all required code into folders under the current directory;
 2. `ant run` will run all nodes (and at least on Linux and Mac OS X stop them again when you hit Ctrl-C);
 3. `ant rm` will delete all folders and files created in steps 1 and 2.
+
+For example, to run the ACE management server with 10 targets, we should do the following:
+
+    :::sh
+    [localhost:~/]$ ant -Dtargets=1,2,3,4,5,6,7,8,9,10 unzip run
+    ...
+    [localhost:~/]$ ant -Dtargets=1,2,3,4,5,6,7,8,9,10 rm
+