Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id E90D5200BD5 for ; Thu, 8 Dec 2016 23:29:21 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id E7D80160B2C; Thu, 8 Dec 2016 22:29:21 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 46933160B27 for ; Thu, 8 Dec 2016 23:29:21 +0100 (CET) Received: (qmail 82955 invoked by uid 500); 8 Dec 2016 22:29:10 -0000 Mailing-List: contact common-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list common-commits@hadoop.apache.org Received: (qmail 81632 invoked by uid 99); 8 Dec 2016 22:29:09 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Dec 2016 22:29:09 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2724EF1597; Thu, 8 Dec 2016 22:29:09 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: stevel@apache.org To: common-commits@hadoop.apache.org Date: Thu, 08 Dec 2016 22:29:28 -0000 Message-Id: <2061de89303a4d39b3a8f52ca150adff@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [21/50] [abbrv] hadoop git commit: HADOOP-13835. Move Google Test Framework code from mapreduce to hadoop-common. Contributed by Varun Vasudev. archived-at: Thu, 08 Dec 2016 22:29:22 -0000 HADOOP-13835. Move Google Test Framework code from mapreduce to hadoop-common. Contributed by Varun Vasudev. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/b2a3d6c5 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/b2a3d6c5 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/b2a3d6c5 Branch: refs/heads/HADOOP-13345 Commit: b2a3d6c519d83283a49b0d2172dcf1de97f9c4bc Parents: 8e63fa9 Author: Akira Ajisaka Authored: Tue Dec 6 14:01:47 2016 +0900 Committer: Akira Ajisaka Committed: Tue Dec 6 14:01:47 2016 +0900 ---------------------------------------------------------------------- LICENSE.txt | 2 +- hadoop-common-project/hadoop-common/pom.xml | 1 + .../src/main/native/gtest/gtest-all.cc | 10403 ++++++++ .../src/main/native/gtest/include/gtest/gtest.h | 21192 +++++++++++++++++ .../hadoop-mapreduce-client-nativetask/pom.xml | 2 - .../src/CMakeLists.txt | 8 +- .../src/main/native/gtest/gtest-all.cc | 10403 -------- .../src/main/native/gtest/include/gtest/gtest.h | 21192 ----------------- 8 files changed, 31603 insertions(+), 31600 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/b2a3d6c5/LICENSE.txt ---------------------------------------------------------------------- diff --git a/LICENSE.txt b/LICENSE.txt index 04d2daa..2183f0e 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -289,7 +289,7 @@ For src/main/native/src/org/apache/hadoop/io/compress/lz4/{lz4.h,lz4.c,lz4hc.h,l */ -For hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-nativetask/src/main/native/gtest +For hadoop-common-project/hadoop-common/src/main/native/gtest --------------------------------------------------------------------- Copyright 2008, Google Inc. All rights reserved. http://git-wip-us.apache.org/repos/asf/hadoop/blob/b2a3d6c5/hadoop-common-project/hadoop-common/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/pom.xml b/hadoop-common-project/hadoop-common/pom.xml index 1d45452..c9b282f 100644 --- a/hadoop-common-project/hadoop-common/pom.xml +++ b/hadoop-common-project/hadoop-common/pom.xml @@ -523,6 +523,7 @@ src/main/native/src/org/apache/hadoop/io/compress/lz4/lz4hc.h src/main/native/src/org/apache/hadoop/io/compress/lz4/lz4hc.c src/main/native/src/org/apache/hadoop/io/compress/lz4/lz4hc_encoder.h + src/main/native/gtest/**/* src/test/resources/test-untar.tgz src/test/resources/test.har/_SUCCESS src/test/resources/test.har/_index --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org For additional commands, e-mail: common-commits-help@hadoop.apache.org