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 6A3B1200AF7 for ; Tue, 14 Jun 2016 10:47:31 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 68D0C160A47; Tue, 14 Jun 2016 08:47:31 +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 B07401602C5 for ; Tue, 14 Jun 2016 10:47:30 +0200 (CEST) Received: (qmail 92055 invoked by uid 500); 14 Jun 2016 08:47:29 -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 92047 invoked by uid 99); 14 Jun 2016 08:47:29 -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; Tue, 14 Jun 2016 08:47:29 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id AE244E0556; Tue, 14 Jun 2016 08:47:29 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: cdutz@apache.org To: commits@flex.apache.org Message-Id: <103ae029049c4c6a960fdcd3a859e7ae@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: [flex-falcon] [refs/heads/develop] - - Disabled assertions for integration-tests Date: Tue, 14 Jun 2016 08:47:29 +0000 (UTC) archived-at: Tue, 14 Jun 2016 08:47:31 -0000 Repository: flex-falcon Updated Branches: refs/heads/develop 43a064f98 -> c48762004 - Disabled assertions for integration-tests Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/c4876200 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/c4876200 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/c4876200 Branch: refs/heads/develop Commit: c48762004392bab438670526df4b13f1ded62e9c Parents: 43a064f Author: Christofer Dutz Authored: Tue Jun 14 10:47:19 2016 +0200 Committer: Christofer Dutz Committed: Tue Jun 14 10:47:19 2016 +0200 ---------------------------------------------------------------------- compiler/src/test/java/as/ASFeatureTestsBase.java | 8 +++++--- pom.xml | 8 ++++++++ 2 files changed, 13 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/c4876200/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 61ed64f..0ff167a 100644 --- a/compiler/src/test/java/as/ASFeatureTestsBase.java +++ b/compiler/src/test/java/as/ASFeatureTestsBase.java @@ -92,11 +92,13 @@ public class ASFeatureTestsBase swcs.add(testAdapter.getFlexArtifact("spark").getPath()); swcs.add(testAdapter.getFlexArtifactResourceBundle("spark").getPath()); } - String libraryPath = "-library-path=" + StringUtils.join(swcs.toArray(new String[swcs.size()]), ","); - + List args = new ArrayList(); args.add("-external-library-path=" + testAdapter.getPlayerglobal().getPath()); - args.add(libraryPath); + if(swcs.size() > 0) { + 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 (otherOptions != null) { http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/c4876200/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index c52dae7..48317cc 100644 --- a/pom.xml +++ b/pom.xml @@ -349,6 +349,14 @@ ${settings.localRepository} ${env.FLASHPLAYER_DEBUGGER} + + false