Return-Path: X-Original-To: apmail-incubator-accumulo-dev-archive@minotaur.apache.org Delivered-To: apmail-incubator-accumulo-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B2EFA9087 for ; Mon, 12 Mar 2012 01:51:49 +0000 (UTC) Received: (qmail 29842 invoked by uid 500); 12 Mar 2012 01:45:08 -0000 Delivered-To: apmail-incubator-accumulo-dev-archive@incubator.apache.org Received: (qmail 29761 invoked by uid 500); 12 Mar 2012 01:45:07 -0000 Mailing-List: contact accumulo-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: accumulo-dev@incubator.apache.org Delivered-To: mailing list accumulo-dev@incubator.apache.org Received: (qmail 29752 invoked by uid 99); 12 Mar 2012 01:45:07 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Mar 2012 01:45:07 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of david.medinets@gmail.com designates 209.85.210.47 as permitted sender) Received: from [209.85.210.47] (HELO mail-pz0-f47.google.com) (209.85.210.47) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Mar 2012 01:44:59 +0000 Received: by dado14 with SMTP id o14so3591175dad.6 for ; Sun, 11 Mar 2012 18:44:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=ZPPi+VR8gtd0gqdWj/fDAPBUxXeW1A9rcpQIOtxMSCY=; b=LsS/yXop+7cU9Y+ojiP9nkJqXx5i0doDE7ik0r+/QH55beG/M97r2X61Q3pQpCxxAq 7MHCYJsP7ihXbetr03hhVF0YLPNN0ZSzNfuZCUHXfmmQMxaXST3SB6oCOrRqhfJyh6J+ Hy/I1cnJgnDjE+lyR/9WIiKebQF8gtTn7W0iXutTLEU87Lz21fJ6xY86lPOw10A1UlGk wuJFSaUp7j4cSFwWgK5VhknobyeVxWCIQAk9rUyLltclqfXFoXwl3KIjmXEUEf3JLOC9 KhI9j39Prw5Z6Rsme8xrtBx0VNh06BGBrMbi0MqhXjJGzRHJwNdM9NjbWD6AQ+NP0oj6 xIGQ== MIME-Version: 1.0 Received: by 10.68.244.99 with SMTP id xf3mr15999406pbc.154.1331516678650; Sun, 11 Mar 2012 18:44:38 -0700 (PDT) Received: by 10.68.197.233 with HTTP; Sun, 11 Mar 2012 18:44:38 -0700 (PDT) Date: Sun, 11 Mar 2012 21:44:38 -0400 Message-ID: Subject: src/start/TestMain.java - was this intended to do something? From: David Medinets To: accumulo-dev Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org This is the file contents. Where there plans or intentions to make it into something more? package org.apache.accumulo.start; public class TestMain { public static void main(String[] args) { if (args.length > 0) { if (args[0].equals("success")) System.exit(0); if (args[0].equals("throw")) throw new RuntimeException("This is an exception"); } System.exit(-1); } }