Return-Path: X-Original-To: apmail-phoenix-commits-archive@minotaur.apache.org Delivered-To: apmail-phoenix-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 488FB106AC for ; Mon, 10 Mar 2014 06:20:50 +0000 (UTC) Received: (qmail 60556 invoked by uid 500); 10 Mar 2014 06:20:49 -0000 Delivered-To: apmail-phoenix-commits-archive@phoenix.apache.org Received: (qmail 60527 invoked by uid 500); 10 Mar 2014 06:20:49 -0000 Mailing-List: contact commits-help@phoenix.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@phoenix.incubator.apache.org Delivered-To: mailing list commits@phoenix.incubator.apache.org Received: (qmail 60514 invoked by uid 99); 10 Mar 2014 06:20:48 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Mar 2014 06:20:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 10 Mar 2014 06:20:44 +0000 Received: (qmail 60299 invoked by uid 99); 10 Mar 2014 06:20:21 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Mar 2014 06:20:21 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 336F293BE82; Mon, 10 Mar 2014 06:20:20 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jeffreyz@apache.org To: commits@phoenix.incubator.apache.org Date: Mon, 10 Mar 2014 06:20:58 -0000 Message-Id: <52069f284b4f4920b521d078b1b4bbf5@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [41/50] git commit: remove end2endTest.sh X-Virus-Checked: Checked by ClamAV on apache.org remove end2endTest.sh Project: http://git-wip-us.apache.org/repos/asf/incubator-phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-phoenix/commit/cbe66317 Tree: http://git-wip-us.apache.org/repos/asf/incubator-phoenix/tree/cbe66317 Diff: http://git-wip-us.apache.org/repos/asf/incubator-phoenix/diff/cbe66317 Branch: refs/heads/master Commit: cbe66317b2fcb50dffff99f9f5db2d9abf875239 Parents: 90c7e8b Author: Jeffrey Zhong Authored: Wed Mar 5 15:10:29 2014 -0800 Committer: Jeffrey Zhong Committed: Wed Mar 5 15:10:29 2014 -0800 ---------------------------------------------------------------------- bin/end2endTest.sh | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-phoenix/blob/cbe66317/bin/end2endTest.sh ---------------------------------------------------------------------- diff --git a/bin/end2endTest.sh b/bin/end2endTest.sh deleted file mode 100755 index a8beb40..0000000 --- a/bin/end2endTest.sh +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/bash -# -#/** -# * Licensed to the Apache Software Foundation (ASF) under one -# * or more contributor license agreements. See the NOTICE file -# * distributed with this work for additional information -# * regarding copyright ownership. The ASF licenses this file -# * to you under the Apache License, Version 2.0 (the -# * "License"); you may not use this file except in compliance -# * with the License. You may obtain a copy of the License at -# * -# * http://www.apache.org/licenses/LICENSE-2.0 -# * -# * Unless required by applicable law or agreed to in writing, software -# * distributed under the License is distributed on an "AS IS" BASIS, -# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# * See the License for the specific language governing permissions and -# * limitations under the License. -# */ -# - -current_dir=$(cd $(dirname $0);pwd) -phoenix_jar_path="$current_dir/../phoenix-core/target/*" - -# check envvars which might override default args -if [ "${PHOENIX_LIB_DIR}" != "" ]; then - phoenix_jar_path="${PHOENIX_LIB_DIR}" -fi - -# HBase configuration folder path (where hbase-site.xml reside) for HBase/Phoenix client side property override -hbase_config_path="$current_dir" -# check envvars which might override default args -if [ "${HBASE_CONF_DIR}" != "" ]; then - hbase_config_path="${HBASE_CONF_DIR}" -fi - -hbase_library_path="$current_dir" -# check envvars which might override default args -if [ "${HBASE_LIBRARY_DIR}" != "" ]; then - #Sample class path would be: /usr/lib/hbase-0.94.15/lib/*:/usr/lib/hbase-0.94.15/* - hbase_library_path="${HBASE_LIBRARY_DIR}" -fi - -echo "Current ClassPath="$hbase_config_path:$hbase_library_path:$phoenix_jar_path - -java -cp "$hbase_config_path:$phoenix_jar_path:$hbase_library_path" org.apache.phoenix.end2end.End2EndTestDriver "$@"