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 80822200B26 for ; Mon, 27 Jun 2016 16:57:17 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 7F2C0160A63; Mon, 27 Jun 2016 14:57:17 +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 D2FA5160A54 for ; Mon, 27 Jun 2016 16:57:16 +0200 (CEST) Received: (qmail 37268 invoked by uid 500); 27 Jun 2016 14:57:16 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 37260 invoked by uid 99); 27 Jun 2016 14:57:16 -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; Mon, 27 Jun 2016 14:57:16 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id DF587DFDC3; Mon, 27 Jun 2016 14:57:15 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aharui@apache.org To: commits@flex.apache.org Date: Mon, 27 Jun 2016 14:57:15 -0000 Message-Id: <0f4a4552bd21499590ba2158a4f1be36@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/3] git commit: [flex-falcon] [refs/heads/develop] - don't run tests that require Flex SDK if SDK is not present archived-at: Mon, 27 Jun 2016 14:57:17 -0000 Repository: flex-falcon Updated Branches: refs/heads/develop 916b2b2c8 -> 8a37541fe don't run tests that require Flex SDK if SDK is not present Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/8a37541f Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/8a37541f Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/8a37541f Branch: refs/heads/develop Commit: 8a37541fe0c6047388659192292ab4be5c1e0280 Parents: fa7f32a Author: Alex Harui Authored: Mon Jun 27 07:56:56 2016 -0700 Committer: Alex Harui Committed: Mon Jun 27 07:57:06 2016 -0700 ---------------------------------------------------------------------- compiler/src/test/build.xml | 20 +++++++++++++------- .../src/test/java/as/ASFeatureTestsBase.java | 3 ++- 2 files changed, 15 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/8a37541f/compiler/src/test/build.xml ---------------------------------------------------------------------- diff --git a/compiler/src/test/build.xml b/compiler/src/test/build.xml index 8698577..63c8be1 100644 --- a/compiler/src/test/build.xml +++ b/compiler/src/test/build.xml @@ -304,20 +304,23 @@ + - - - - - - + + + + + + + + - + @@ -340,6 +343,7 @@ + @@ -352,7 +356,9 @@ + + http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/8a37541f/compiler/src/test/java/as/ASFeatureTestsBase.java ---------------------------------------------------------------------- diff --git a/compiler/src/test/java/as/ASFeatureTestsBase.java b/compiler/src/test/java/as/ASFeatureTestsBase.java index 0ff167a..4accbec 100644 --- a/compiler/src/test/java/as/ASFeatureTestsBase.java +++ b/compiler/src/test/java/as/ASFeatureTestsBase.java @@ -99,7 +99,8 @@ public class ASFeatureTestsBase String libraryPath = "-library-path=" + StringUtils.join(swcs.toArray(new String[swcs.size()]), ","); args.add(libraryPath); } - args.add("-namespace=" + NAMESPACE_2009 + "," + testAdapter.getFlexManifestPath("mxml-2009")); + if (withFramework || withRPC || withSpark) + args.add("-namespace=" + NAMESPACE_2009 + "," + testAdapter.getFlexManifestPath("mxml-2009")); if (otherOptions != null) { Collections.addAll(args, otherOptions);