Return-Path: X-Original-To: apmail-ace-commits-archive@www.apache.org Delivered-To: apmail-ace-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C1A9192F7 for ; Wed, 18 Apr 2012 08:45:15 +0000 (UTC) Received: (qmail 78063 invoked by uid 500); 18 Apr 2012 08:45:15 -0000 Delivered-To: apmail-ace-commits-archive@ace.apache.org Received: (qmail 78035 invoked by uid 500); 18 Apr 2012 08:45:15 -0000 Mailing-List: contact commits-help@ace.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ace.apache.org Delivered-To: mailing list commits@ace.apache.org Received: (qmail 77974 invoked by uid 99); 18 Apr 2012 08:45:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Apr 2012 08:45:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Apr 2012 08:45:11 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 5970923889EC for ; Wed, 18 Apr 2012 08:44:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1327425 - /ace/site/trunk/content/dev-doc/design/test-script.mdtext Date: Wed, 18 Apr 2012 08:44:50 -0000 To: commits@ace.apache.org From: jawi@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120418084450.5970923889EC@eris.apache.org> 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 +