Build failed in Jenkins: flex-utilities_installer #1108

2017-03-07 Thread flex . ci . builds
See 


--
Started by timer
Building remotely on flex_sdk_slave2 in workspace 

 > C:\Program Files (x86)\Git\cmd\git.exe rev-parse --is-inside-work-tree # 
 > timeout=10
Fetching changes from the remote Git repository
 > C:\Program Files (x86)\Git\cmd\git.exe config remote.origin.url 
 > https://git-wip-us.apache.org/repos/asf/flex-utilities.git # timeout=10
Fetching upstream changes from 
https://git-wip-us.apache.org/repos/asf/flex-utilities.git
 > C:\Program Files (x86)\Git\cmd\git.exe --version # timeout=10
 > C:\Program Files (x86)\Git\cmd\git.exe fetch --tags --progress 
 > https://git-wip-us.apache.org/repos/asf/flex-utilities.git 
 > +refs/heads/*:refs/remotes/origin/*
 > C:\Program Files (x86)\Git\cmd\git.exe rev-parse "origin/develop^{commit}" # 
 > timeout=10
Checking out Revision 581567a911b57eb576cac297439919751cfb52c3 (origin/develop)
 > C:\Program Files (x86)\Git\cmd\git.exe config core.sparsecheckout # 
 > timeout=10
 > C:\Program Files (x86)\Git\cmd\git.exe checkout -f 
 > 581567a911b57eb576cac297439919751cfb52c3
 > C:\Program Files (x86)\Git\cmd\git.exe rev-list 
 > 581567a911b57eb576cac297439919751cfb52c3 # timeout=10
[ant_on_air] $ cmd.exe /C 
"c:\Jenkins\tools\hudson.tasks.Ant_AntInstallation\c_apache-ant-1.9.3\bin\ant.bat
 -file build.xml -Dplayerglobal.version=11.7 main && exit %%ERRORLEVEL%%"
Buildfile: 


clean:
   [delete] Deleting directory 


init:

check-as3commons.swc:

get-as3commons.swc:

third-party:
  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 


compile:
[compc] Loading configuration file 
C:\Jenkins\workspace\flex-sdk\frameworks\air-config.xml
[compc] 
C:\Jenkins\workspace\flex-utilities_installer\flex-installer\ant_on_air\bin\ant_on_air.swc
 (134458 bytes)
[compc] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8

test:
[mxmlc] Loading configuration file 
C:\Jenkins\workspace\flex-sdk\frameworks\air-config.xml
[mxmlc] 
C:\Jenkins\workspace\flex-utilities_installer\flex-installer\ant_on_air\tests\AntOnAir.swf
 (1147467 bytes)
[mxmlc] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8

failuretests:

main:

BUILD SUCCESSFUL
Total time: 1 minute 34 seconds
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[flex-installer] $ cmd.exe /C 
"c:\Jenkins\tools\hudson.tasks.Ant_AntInstallation\c_apache-ant-1.9.3\bin\ant.bat
 -file build.xml -Dplayerglobal.version=11.7 clean build source-package 
create-md5s copy-misc && exit %%ERRORLEVEL%%"
Buildfile: 


clean:
   [delete] Deleting directory 

   [delete] Deleting directory 

   [delete] Deleting directory 

   [delete] Deleting directory 


clean:

createDirs:
 [echo] ***
 [echo] Execute the update-version target once,
 [echo] and only once, when you modifiy

git commit: [flex-asjs] [refs/heads/develop] - Introduce ByteArrayAsset for embedding.

2017-03-07 Thread yishayw
Repository: flex-asjs
Updated Branches:
  refs/heads/develop 5652ccc2a -> 9657c4e9a


Introduce ByteArrayAsset for embedding.


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/9657c4e9
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/9657c4e9
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/9657c4e9

Branch: refs/heads/develop
Commit: 9657c4e9a90a060b95299b34df305fd08e3ce8b3
Parents: 5652ccc
Author: yishayw 
Authored: Tue Mar 7 11:57:35 2017 +0200
Committer: yishayw 
Committed: Tue Mar 7 11:57:35 2017 +0200

--
 .../projects/Core/src/main/flex/CoreClasses.as  |  1 +
 .../flex/org/apache/flex/core/ByteArrayAsset.as | 49 
 2 files changed, 50 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/9657c4e9/frameworks/projects/Core/src/main/flex/CoreClasses.as
--
diff --git a/frameworks/projects/Core/src/main/flex/CoreClasses.as 
b/frameworks/projects/Core/src/main/flex/CoreClasses.as
index 9f3db99..018a180 100644
--- a/frameworks/projects/Core/src/main/flex/CoreClasses.as
+++ b/frameworks/projects/Core/src/main/flex/CoreClasses.as
@@ -42,6 +42,7 @@ internal class CoreClasses
import org.apache.flex.core.WrappedSimpleButton; 
WrappedSimpleButton;
import org.apache.flex.core.WrappedSprite; WrappedSprite;
import org.apache.flex.core.WrappedTextField; WrappedTextField;
+   import org.apache.flex.core.ByteArrayAsset; ByteArrayAsset;
}
import org.apache.flex.core.IBinaryImageLoader; IBinaryImageLoader;
 import org.apache.flex.core.ItemRendererClassFactory; 
ItemRendererClassFactory;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/9657c4e9/frameworks/projects/Core/src/main/flex/org/apache/flex/core/ByteArrayAsset.as
--
diff --git 
a/frameworks/projects/Core/src/main/flex/org/apache/flex/core/ByteArrayAsset.as 
b/frameworks/projects/Core/src/main/flex/org/apache/flex/core/ByteArrayAsset.as
new file mode 100644
index 000..17b810f
--- /dev/null
+++ 
b/frameworks/projects/Core/src/main/flex/org/apache/flex/core/ByteArrayAsset.as
@@ -0,0 +1,49 @@
+
+//
+//  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.
+//
+
+package org.apache.flex.core
+{
+   import flash.utils.ByteArray;
+   
+/**
+ *  The ByteArrayAsset represents an arbitrary sequence of byte data
+*  that can be embedded in a FlexJS swf class.
+ * 
+ *  @langversion 3.0
+ *  @playerversion Flash 10.2
+ *  @playerversion AIR 2.6
+ *  @productversion FlexJS 0.0
+ */
+   public class ByteArrayAsset extends ByteArray
+   {
+   
+/**
+ *  Constructor.
+ *  
+ *  @langversion 3.0
+ *  @playerversion Flash 9
+ *  @playerversion AIR 1.1
+ *  @productversion Flex 3
+ */
+   public function ByteArrayAsset()
+   {
+   super();
+   }
+   }
+}
+



git commit: [flex-asjs] [refs/heads/develop] - Added Shader files (with compiler argument)

2017-03-07 Thread harbs
Repository: flex-asjs
Updated Branches:
  refs/heads/develop 9657c4e9a -> 281c77860


Added Shader files (with compiler argument)


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/281c7786
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/281c7786
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/281c7786

Branch: refs/heads/develop
Commit: 281c778607522da2aeca24f8212d551687684ce0
Parents: 9657c4e
Author: Harbs 
Authored: Tue Mar 7 12:25:26 2017 +0200
Committer: Harbs 
Committed: Tue Mar 7 12:25:26 2017 +0200

--
 frameworks/projects/Graphics/build.xml  |   1 +
 .../Graphics/src/main/flex/GraphicsClasses.as   |   9 +
 .../flex/graphics/utils/shaderClasses/Color.pbk | 101 +
 .../graphics/utils/shaderClasses/ColorBurn.pbk  | 149 +
 .../utils/shaderClasses/ColorBurnShader.as  |  62 ++
 .../graphics/utils/shaderClasses/ColorDodge.pbk | 151 +
 .../utils/shaderClasses/ColorDodgeShader.as |  61 +
 .../graphics/utils/shaderClasses/ColorShader.as |  61 +
 .../graphics/utils/shaderClasses/Exclusion.pbk  | 105 +
 .../utils/shaderClasses/ExclusionShader.as  |  61 +
 .../flex/graphics/utils/shaderClasses/Hue.pbk   | 216 ++
 .../graphics/utils/shaderClasses/HueShader.as   |  61 +
 .../graphics/utils/shaderClasses/Luminosity.pbk | 103 +
 .../shaderClasses/LuminosityMaskFilter.pbk  | 133 +++
 .../utils/shaderClasses/LuminosityMaskShader.as |  97 
 .../utils/shaderClasses/LuminosityShader.as |  60 +
 .../graphics/utils/shaderClasses/Saturation.pbk | 222 +++
 .../utils/shaderClasses/SaturationShader.as |  60 +
 .../graphics/utils/shaderClasses/SoftLight.pbk  | 199 +
 .../utils/shaderClasses/SoftLightShader.as  |  60 +
 20 files changed, 1972 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/281c7786/frameworks/projects/Graphics/build.xml
--
diff --git a/frameworks/projects/Graphics/build.xml 
b/frameworks/projects/Graphics/build.xml
index b47b813..01cbeb5 100644
--- a/frameworks/projects/Graphics/build.xml
+++ b/frameworks/projects/Graphics/build.xml
@@ -83,6 +83,7 @@
 
 
 
+
 
 
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/281c7786/frameworks/projects/Graphics/src/main/flex/GraphicsClasses.as
--
diff --git a/frameworks/projects/Graphics/src/main/flex/GraphicsClasses.as 
b/frameworks/projects/Graphics/src/main/flex/GraphicsClasses.as
index 3b87a56..5836c9e 100644
--- a/frameworks/projects/Graphics/src/main/flex/GraphicsClasses.as
+++ b/frameworks/projects/Graphics/src/main/flex/GraphicsClasses.as
@@ -41,6 +41,15 @@ internal class GraphicsClasses
COMPILE::SWF
{
import org.apache.flex.graphics.utils.PathHelper; PathHelper;
+   import 
org.apache.flex.graphics.utils.shaderClasses.ColorBurnShader; ColorBurnShader;
+   import 
org.apache.flex.graphics.utils.shaderClasses.ColorDodgeShader; ColorDodgeShader;
+   import 
org.apache.flex.graphics.utils.shaderClasses.ColorShader; ColorShader;
+   import 
org.apache.flex.graphics.utils.shaderClasses.ExclusionShader; ExclusionShader;
+   import org.apache.flex.graphics.utils.shaderClasses.HueShader; 
HueShader;
+   import 
org.apache.flex.graphics.utils.shaderClasses.LuminosityMaskShader; 
LuminosityMaskShader;
+   import 
org.apache.flex.graphics.utils.shaderClasses.LuminosityShader; LuminosityShader;
+   import 
org.apache.flex.graphics.utils.shaderClasses.SaturationShader; SaturationShader;
+   import 
org.apache.flex.graphics.utils.shaderClasses.SoftLightShader; SoftLightShader;
}
import org.apache.flex.graphics.QuadraticCurve; QuadraticCurve;
import org.apache.flex.graphics.ICircle; ICircle;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/281c7786/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/Color.pbk
--
diff --git 
a/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/Color.pbk
 
b/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/Color.pbk
new file mode 100644
index 000..daedc3f
--- /dev/null
+++ 
b/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/Color.pbk
@@ -0,0 +1,101 @@
+///

[1/2] git commit: [flex-asjs] [refs/heads/develop] - Re-introduce shader classes now that compiler can take embed.

2017-03-07 Thread yishayw
Repository: flex-asjs
Updated Branches:
  refs/heads/develop 281c77860 -> 53c6beef2


Re-introduce shader classes now that compiler can take embed.


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/b8a66fb0
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/b8a66fb0
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/b8a66fb0

Branch: refs/heads/develop
Commit: b8a66fb0dc934a11292382285ff1e8848be50910
Parents: 9657c4e
Author: yishayw 
Authored: Tue Mar 7 12:42:02 2017 +0200
Committer: yishayw 
Committed: Tue Mar 7 12:42:02 2017 +0200

--
 .../src/main/config/compile-as-config.xml   |   1 +
 .../Graphics/src/main/flex/GraphicsClasses.as   |   9 +
 .../flex/graphics/utils/shaderClasses/Color.pbk | 101 +
 .../graphics/utils/shaderClasses/ColorBurn.pbk  | 149 +
 .../utils/shaderClasses/ColorBurnShader.as  |  60 +
 .../graphics/utils/shaderClasses/ColorDodge.pbk | 151 +
 .../utils/shaderClasses/ColorDodgeShader.as |  60 +
 .../graphics/utils/shaderClasses/ColorShader.as |  60 +
 .../graphics/utils/shaderClasses/Exclusion.pbk  | 105 +
 .../utils/shaderClasses/ExclusionShader.as  |  60 +
 .../flex/graphics/utils/shaderClasses/Hue.pbk   | 216 ++
 .../graphics/utils/shaderClasses/HueShader.as   |  60 +
 .../graphics/utils/shaderClasses/Luminosity.pbk | 103 +
 .../shaderClasses/LuminosityMaskFilter.pbk  | 133 +++
 .../utils/shaderClasses/LuminosityMaskShader.as |  96 
 .../utils/shaderClasses/LuminosityShader.as |  59 +
 .../graphics/utils/shaderClasses/Saturation.pbk | 222 +++
 .../utils/shaderClasses/SaturationShader.as |  59 +
 .../graphics/utils/shaderClasses/SoftLight.pbk  | 199 +
 .../utils/shaderClasses/SoftLightShader.as  |  59 +
 20 files changed, 1962 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b8a66fb0/frameworks/projects/Graphics/src/main/config/compile-as-config.xml
--
diff --git a/frameworks/projects/Graphics/src/main/config/compile-as-config.xml 
b/frameworks/projects/Graphics/src/main/config/compile-as-config.xml
index 75adafe..e665c96 100644
--- a/frameworks/projects/Graphics/src/main/config/compile-as-config.xml
+++ b/frameworks/projects/Graphics/src/main/config/compile-as-config.xml
@@ -32,6 +32,7 @@

org.apache.flex.events.ValueChangeEvent

org.apache.flex.events.ValueChangeEvent

valueChange
+   
org.apache.flex.core.ByteArrayAsset
 
 
   Bindable

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b8a66fb0/frameworks/projects/Graphics/src/main/flex/GraphicsClasses.as
--
diff --git a/frameworks/projects/Graphics/src/main/flex/GraphicsClasses.as 
b/frameworks/projects/Graphics/src/main/flex/GraphicsClasses.as
index 3b87a56..5836c9e 100644
--- a/frameworks/projects/Graphics/src/main/flex/GraphicsClasses.as
+++ b/frameworks/projects/Graphics/src/main/flex/GraphicsClasses.as
@@ -41,6 +41,15 @@ internal class GraphicsClasses
COMPILE::SWF
{
import org.apache.flex.graphics.utils.PathHelper; PathHelper;
+   import 
org.apache.flex.graphics.utils.shaderClasses.ColorBurnShader; ColorBurnShader;
+   import 
org.apache.flex.graphics.utils.shaderClasses.ColorDodgeShader; ColorDodgeShader;
+   import 
org.apache.flex.graphics.utils.shaderClasses.ColorShader; ColorShader;
+   import 
org.apache.flex.graphics.utils.shaderClasses.ExclusionShader; ExclusionShader;
+   import org.apache.flex.graphics.utils.shaderClasses.HueShader; 
HueShader;
+   import 
org.apache.flex.graphics.utils.shaderClasses.LuminosityMaskShader; 
LuminosityMaskShader;
+   import 
org.apache.flex.graphics.utils.shaderClasses.LuminosityShader; LuminosityShader;
+   import 
org.apache.flex.graphics.utils.shaderClasses.SaturationShader; SaturationShader;
+   import 
org.apache.flex.graphics.utils.shaderClasses.SoftLightShader; SoftLightShader;
}
import org.apache.flex.graphics.QuadraticCurve; QuadraticCurve;
import org.apache.flex.graphics.ICircle; ICircle;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b8a66fb0/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/Color.pbk
--
diff --git 
a/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/Color.pbk
 
b/frameworks/projects/Graphics/src/main/flex/o

[2/2] git commit: [flex-asjs] [refs/heads/develop] - Merge branch 'develop' of https://git-wip-us.apache.org/repos/asf/flex-asjs into develop

2017-03-07 Thread yishayw
Merge branch 'develop' of https://git-wip-us.apache.org/repos/asf/flex-asjs 
into develop

Conflicts:

frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/ColorBurnShader.as

frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/ColorDodgeShader.as

frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/ColorShader.as

frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/ExclusionShader.as

frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/HueShader.as

frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/LuminosityMaskShader.as

frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/LuminosityShader.as

frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/SaturationShader.as

frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/SoftLightShader.as


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/53c6beef
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/53c6beef
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/53c6beef

Branch: refs/heads/develop
Commit: 53c6beef26394f5654f14c60648116274f66dad4
Parents: b8a66fb 281c778
Author: yishayw 
Authored: Tue Mar 7 12:44:04 2017 +0200
Committer: yishayw 
Committed: Tue Mar 7 12:44:04 2017 +0200

--
 frameworks/projects/Graphics/build.xml | 1 +
 1 file changed, 1 insertion(+)
--




Build failed in Jenkins: flex-asjs #2054

2017-03-07 Thread flex . ci . builds
See 

Changes:

[yishayjobs] Introduce ByteArrayAsset for embedding.

[harbs] Added Shader files (with compiler argument)

[yishayjobs] Re-introduce shader classes now that compiler can take embed.

--
Started by an SCM change
Building remotely on flex_sdk_slave2 in workspace 

 > C:\Program Files (x86)\Git\cmd\git.exe rev-parse --is-inside-work-tree # 
 > timeout=10
Fetching changes from the remote Git repository
 > C:\Program Files (x86)\Git\cmd\git.exe config remote.origin.url 
 > https://git-wip-us.apache.org/repos/asf/flex-asjs.git # timeout=10
Fetching upstream changes from 
https://git-wip-us.apache.org/repos/asf/flex-asjs.git
 > C:\Program Files (x86)\Git\cmd\git.exe --version # timeout=10
 > C:\Program Files (x86)\Git\cmd\git.exe fetch --tags --progress 
 > https://git-wip-us.apache.org/repos/asf/flex-asjs.git 
 > +refs/heads/*:refs/remotes/origin/*
 > C:\Program Files (x86)\Git\cmd\git.exe rev-parse "origin/develop^{commit}" # 
 > timeout=10
Checking out Revision 53c6beef26394f5654f14c60648116274f66dad4 (origin/develop)
 > C:\Program Files (x86)\Git\cmd\git.exe config core.sparsecheckout # 
 > timeout=10
 > C:\Program Files (x86)\Git\cmd\git.exe checkout -f 
 > 53c6beef26394f5654f14c60648116274f66dad4
 > C:\Program Files (x86)\Git\cmd\git.exe rev-list 
 > 5652ccc2a29d42e657c367850e67bc7261a59eb6 # timeout=10
[frameworks] $ cmd.exe /C 
"c:\Jenkins\tools\hudson.tasks.Ant_AntInstallation\c_apache-ant-1.9.3\bin\ant.bat
 -file downloads.xml -Dnightly=true 
-Djshint=C:\Users\apacheflexbuild\AppData\Roaming\npm\jshint_jenkins.cmd 
'"-Dbrowser=C:\Program Files (x86)\Mozilla Firefox\firefox.exe"' 
-Dgjslint=C:\Python27\Scripts\gjslint.exe -Dbuild.noprompt=true 
-Dplayerglobal.version=11.7 subset-goog && exit %%ERRORLEVEL%%"
Buildfile: 


subset-goog:
 [echo] Subsetting C:\google\closure\Library

BUILD SUCCESSFUL
Total time: 3 seconds
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[flex-asjs] $ cmd.exe /C 
"c:\Jenkins\tools\hudson.tasks.Ant_AntInstallation\c_apache-ant-1.9.3\bin\ant.bat
 -file build.xml -Dnightly=true -Denv.FLEX_DOWNLOAD_CACHE=C:\FlexDownloadCache 
-Djshint=C:\Users\apacheflexbuild\AppData\Roaming\npm\jshint_jenkins.cmd 
'"-Dbrowser=C:\Program Files (x86)\Mozilla Firefox\firefox.exe"' 
-Dgjslint=C:\Python27\Scripts\gjslint.exe -Dbuild.noprompt=true 
-Dplayerglobal.version=11.7 release create-md5 && exit %%ERRORLEVEL%%"
Buildfile: 

check-playerglobal-home:
 [echo] PLAYERGLOBAL_HOME is c:\Adobe\flashPlayer
 [echo] playerglobal.version is 11.7
 [echo] playerglobal.swc is c:\Adobe\flashPlayer/11.7/playerglobal.swc

check-air-home:
 [echo] AIR_HOME is c:\Adobe\AIRSDK40

check-falcon-home:
 [echo] FALCON_HOME is c:\Jenkins\workspace\flex-falcon\compiler

BUILD FAILED
:298: 
FALCON_HOME must be set to a folder with a lib sub-folder containing 
falcon-mxmlc.jar such as the compiler folder in flex-falcon repo or this folder 
if it has been converted into an FB-compatible SDK

Total time: 2 seconds
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Build step 'Invoke Ant' marked build as failure
Skipped archiving because build is not successful


[MAVEN-BUILD] FlexJS Framework (maven) - Build # 774 - Failure

2017-03-07 Thread Apache Jenkins Server
The Apache Jenkins build system has built FlexJS Framework (maven) (build #774)

Status: Failure

Check console output at 
https://builds.apache.org/job/FlexJS%20Framework%20(maven)/774/ to view the 
results.

Re: git commit: [flex-asjs] [refs/heads/develop] - Added Shader files (with compiler argument)

2017-03-07 Thread Alex Harui
Hi,

Is it possible to use the upstream release instead?  Even the flex-sdk
uses pbj files from the upstream.  IIRC, we did that because not everyone
wanted to deal with installing the PB compiler.

Thanks,
-Alex

On 3/7/17, 2:25 AM, "ha...@apache.org"  wrote:

>Repository: flex-asjs
>Updated Branches:
>  refs/heads/develop 9657c4e9a -> 281c77860
>
>
>Added Shader files (with compiler argument)
>
>
>Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
>Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/281c7786
>Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/281c7786
>Diff: ttp://git-wip-us.apache.org/repos/asf/flex-asjs/diff/281c7786
>
>Branch: refeads/develop
>Commit: 281c778607522da2aeca24f8212d551687684ce0
>Parents: 9657c4e
>Author: Harbs 
>Authored: Tue Mar 7 12:25:26 2017 +0200
>Committer: Harbs 
>Committed: Tue Mar 7 12:25:26 2017 +0200
>
>--
> frameworks/projects/Graphics/build.xml  |   1 +
> .../Graphics/src/main/flex/GraphicsClasses.as   |   9 +
> .../flex/graphics/utils/shaderClasses/Color.pbk | 101 +
> .../grahics/utils/shaderClasses/ColorBurn.pbk  | 149 +
> .../utils/shrClasses/ColorBurnShader.as  |  62 ++
> .../graphics/utils/shaderClasses/ColorDodge.pbk | 151 +
> .../utils/shaderClasses/ColorDodgeShader.as |  61 +
> .../graphics/utils/shaderClasses/ColorShader.as |  61 +
> .../graphics/utils/shaderClasses/Exclusion.pbk  | 105 +
> .../utils/shaderClasses/ExclusionShader.as  |  61 +
> .../flex/graphics/utils/shaderClasses/Hue.pbk   | 216 ++
> .../graphics/utils/shaderClasses/HueShader.as   |  61 +
> .../graphics/utils/shaderClasses/Luminosity.pbk | 103 +
> .../shaderClasses/LuminosityMaskFilter.pbk  | 133 +++
> .../utils/shaderClasses/LuminosityMaskShader.as |  97 
> .../utils/shaderClasses/LuminosityShader.as |  60 +
> .../graphics/utils/shaderClasses/Saturation.pbk | 222 +++
> .../utils/shaderClasses/SaturationShader.as |  60 +
> .../graphics/utils/shaderClasses/SoftLight.pbk  | 199 +
> .../utils/shaderClasses/SoftLightShader.as  |  60 +
> 20 files changed, 1972 insertions(+)
>-
>
>
>http://git-wip-us.apachrg/repos/asf/flex-asjs/blob/281c7786/frameworks/
>projects/Graphics/build.xml
>--
>diff --git a/frameworks/projects/Graphics/build.xml
>b/frameworks/projects/Graphics/build.xml
>index b47b813..01cbeb5 100644
>--- a/frameworks/projects/Graphics/build.xml
>+++ b/frameworks/projects/Graphics/build.xml
>@@ -83,6 +83,7 @@
> 
> 
>
>+
> 
> tofile="${FLEXJS_HOME}/frameworks/libs/${target.name}" />
> 
>
>http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/281c7786/frameworks/
>projects/Graphics/src/main/flex/GraphicsClasses.as
>--
>diff --git 
>a/frameworks/projects/Graphics/src/main/flex/GraphicsClasses.as
>b/frameworks/projects/Graphics/src/main/flex/GraphicsClasses.as
>index 3b87a56..5836c9e 100644
>--- a/frameworks/projects/Graphics/src/main/flex/GraphicsClasses.as
>+++ b/frameworks/projects/Graphics/src/main/flex/GraphicsClasses.as
>@@ -41,6 +41,15 @@ internal class GraphicsClasses
>   COMPILE::SWF
>   {
>   import org.apache.flex.graphics.utils.PathHelper; PathHelper;
>+  import 
>org.apache.flex.graphics.utils.shaderClasses.ColorBurnShader;
>ColorBurnShader;
>+  import 
>org.apache.flex.graphics.utils.shaderClasses.ColorDodgeShader;
>ColorDodgeShader;
>+  import org.apache.flex.graphics.utils.shaderClasses.ColorShader;
>ColorShader;
>+  import 
>org.apache.flex.graphics.utils.shaderClasses.ExclusionShader;
>ExclusionShader;
>+  import org.apache.flex.graphics.utils.shaderClasses.HueShader;
>HueShader;
>+  import 
>org.apache.flex.graphics.utils.shaderClasses.LuminosityMaskShader;
>LuminosityMaskShader;
>+  import 
>org.apache.flex.graphics.utils.shaderClasses.LuminosityShader;
>LuminosityShader;
>+  import 
>org.apach.flex.graphics.utils.shaderClasses.SaturationShader;
>SaturationShader;
>+  import 
>org.apache.flex.graphics.utils.shaderClasses.SoftLightShader;
>SoftLightShader;
>   }
>   import org.apache.flex.graphics.QuadrticCurve; QuadraticCurve;
>   import org.apache.flex.graphics.ICircle; ICircle;
>
>http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/281c7786/frameworks/
>projects/Graphics/src/main/flex/orgapache/flex/graphics/utils/shaderClass
>es/Color.pbk
>-
>diff --git 
>a/frameworks/projects/Graphics/src/main/flex/org/apache/f

[1/2] git commit: [flex-asjs] [refs/heads/develop] - removed pbj from gitignore

2017-03-07 Thread harbs
Repository: flex-asjs
Updated Branches:
  refs/heads/develop 53c6beef2 -> e2c693e93


removed pbj from gitignore


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/60b322dc
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/60b322dc
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/60b322dc

Branch: refs/heads/develop
Commit: 60b322dc5f9b25010e8dc7532a791c9a10bcfe38
Parents: 281c778
Author: Harbs 
Authored: Tue Mar 7 19:27:26 2017 +0200
Committer: Harbs 
Committed: Tue Mar 7 19:27:26 2017 +0200

--
 .../flex/graphics/utils/shaderClasses/Color.pbj | Bin 0 -> 1260 bytes
 .../flex/graphics/utils/shaderClasses/ColorBurn.pbj | Bin 0 -> 1132 bytes
 .../graphics/utils/shaderClasses/ColorDodge.pbj | Bin 0 -> 1062 bytes
 .../flex/graphics/utils/shaderClasses/Exclusion.pbj | Bin 0 -> 612 bytes
 .../flex/graphics/utils/shaderClasses/Hue.pbj   | Bin 0 -> 2256 bytes
 .../graphics/utils/shaderClasses/Luminosity.pbj | Bin 0 -> 1270 bytes
 .../utils/shaderClasses/LuminosityMaskFilter.pbj| Bin 0 -> 612 bytes
 .../graphics/utils/shaderClasses/Saturation.pbj | Bin 0 -> 2286 bytes
 .../flex/graphics/utils/shaderClasses/SoftLight.pbj | Bin 0 -> 1908 bytes
 9 files changed, 0 insertions(+), 0 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60b322dc/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/Color.pbj
--
diff --git 
a/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/Color.pbj
 
b/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/Color.pbj
new file mode 100644
index 000..d5288f2
Binary files /dev/null and 
b/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/Color.pbj
 differ

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60b322dc/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/ColorBurn.pbj
--
diff --git 
a/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/ColorBurn.pbj
 
b/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/ColorBurn.pbj
new file mode 100644
index 000..c51072f
Binary files /dev/null and 
b/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/ColorBurn.pbj
 differ

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60b322dc/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/ColorDodge.pbj
--
diff --git 
a/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/ColorDodge.pbj
 
b/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/ColorDodge.pbj
new file mode 100644
index 000..17f456a
Binary files /dev/null and 
b/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/ColorDodge.pbj
 differ

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60b322dc/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/Exclusion.pbj
--
diff --git 
a/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/Exclusion.pbj
 
b/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/Exclusion.pbj
new file mode 100644
index 000..ede2d6e
Binary files /dev/null and 
b/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/Exclusion.pbj
 differ

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60b322dc/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/Hue.pbj
--
diff --git 
a/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/Hue.pbj
 
b/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/Hue.pbj
new file mode 100644
index 000..b688cbf
Binary files /dev/null and 
b/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/Hue.pbj
 differ

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60b322dc/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/Luminosity.pbj
--
diff --git 
a/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/utils/shaderClasses/Luminosity.pbj
 

[2/2] git commit: [flex-asjs] [refs/heads/develop] - Merge branch 'develop' of https://git-wip-us.apache.org/repos/asf/flex-asjs into develop

2017-03-07 Thread harbs
Merge branch 'develop' of https://git-wip-us.apache.org/repos/asf/flex-asjs 
into develop

* 'develop' of https://git-wip-us.apache.org/repos/asf/flex-asjs:
  Re-introduce shader classes now that compiler can take embed.


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/e2c693e9
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/e2c693e9
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/e2c693e9

Branch: refs/heads/develop
Commit: e2c693e939491df6639fff8db1e6f0784ceca28e
Parents: 60b322d 53c6bee
Author: Harbs 
Authored: Tue Mar 7 19:28:07 2017 +0200
Committer: Harbs 
Committed: Tue Mar 7 19:28:07 2017 +0200

--
 frameworks/projects/Graphics/src/main/config/compile-as-config.xml | 1 +
 .../apache/flex/graphics/utils/shaderClasses/ColorBurnShader.as| 2 --
 .../apache/flex/graphics/utils/shaderClasses/ColorDodgeShader.as   | 1 -
 .../org/apache/flex/graphics/utils/shaderClasses/ColorShader.as| 1 -
 .../apache/flex/graphics/utils/shaderClasses/ExclusionShader.as| 1 -
 .../flex/org/apache/flex/graphics/utils/shaderClasses/HueShader.as | 1 -
 .../flex/graphics/utils/shaderClasses/LuminosityMaskShader.as  | 1 -
 .../apache/flex/graphics/utils/shaderClasses/LuminosityShader.as   | 1 -
 .../apache/flex/graphics/utils/shaderClasses/SaturationShader.as   | 1 -
 .../apache/flex/graphics/utils/shaderClasses/SoftLightShader.as| 1 -
 10 files changed, 1 insertion(+), 10 deletions(-)
--




git commit: [flex-asjs] [refs/heads/develop] - oops. forgot gitignore change

2017-03-07 Thread harbs
Repository: flex-asjs
Updated Branches:
  refs/heads/develop e2c693e93 -> 4803c83ca


oops. forgot gitignore change


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/4803c83c
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/4803c83c
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/4803c83c

Branch: refs/heads/develop
Commit: 4803c83ca0ae7fe76552b736ad015f3ac302fa52
Parents: e2c693e
Author: Harbs 
Authored: Tue Mar 7 19:29:23 2017 +0200
Committer: Harbs 
Committed: Tue Mar 7 19:29:23 2017 +0200

--
 .gitignore | 1 -
 1 file changed, 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/4803c83c/.gitignore
--
diff --git a/.gitignore b/.gitignore
index 38d7487..f0846aa 100644
--- a/.gitignore
+++ b/.gitignore
@@ -48,7 +48,6 @@ thirdparty/
 3.0.33/
 3.0.33
 
-*.pbj
 *.vms
 *.ser
 *.mxp



Build failed in Jenkins: flex-asjs #2055

2017-03-07 Thread flex . ci . builds
See 

Changes:

[harbs] removed pbj from gitignore

[harbs] oops. forgot gitignore change

--
Started by an SCM change
Building remotely on flex_sdk_slave2 in workspace 

 > C:\Program Files (x86)\Git\cmd\git.exe rev-parse --is-inside-work-tree # 
 > timeout=10
Fetching changes from the remote Git repository
 > C:\Program Files (x86)\Git\cmd\git.exe config remote.origin.url 
 > https://git-wip-us.apache.org/repos/asf/flex-asjs.git # timeout=10
Fetching upstream changes from 
https://git-wip-us.apache.org/repos/asf/flex-asjs.git
 > C:\Program Files (x86)\Git\cmd\git.exe --version # timeout=10
 > C:\Program Files (x86)\Git\cmd\git.exe fetch --tags --progress 
 > https://git-wip-us.apache.org/repos/asf/flex-asjs.git 
 > +refs/heads/*:refs/remotes/origin/*
 > C:\Program Files (x86)\Git\cmd\git.exe rev-parse "origin/develop^{commit}" # 
 > timeout=10
Checking out Revision 4803c83ca0ae7fe76552b736ad015f3ac302fa52 (origin/develop)
 > C:\Program Files (x86)\Git\cmd\git.exe config core.sparsecheckout # 
 > timeout=10
 > C:\Program Files (x86)\Git\cmd\git.exe checkout -f 
 > 4803c83ca0ae7fe76552b736ad015f3ac302fa52
 > C:\Program Files (x86)\Git\cmd\git.exe rev-list 
 > 53c6beef26394f5654f14c60648116274f66dad4 # timeout=10
[frameworks] $ cmd.exe /C 
"c:\Jenkins\tools\hudson.tasks.Ant_AntInstallation\c_apache-ant-1.9.3\bin\ant.bat
 -file downloads.xml -Dnightly=true 
-Djshint=C:\Users\apacheflexbuild\AppData\Roaming\npm\jshint_jenkins.cmd 
'"-Dbrowser=C:\Program Files (x86)\Mozilla Firefox\firefox.exe"' 
-Dgjslint=C:\Python27\Scripts\gjslint.exe -Dbuild.noprompt=true 
-Dplayerglobal.version=11.7 subset-goog && exit %%ERRORLEVEL%%"
Buildfile: 


subset-goog:
 [echo] Subsetting C:\google\closure\Library

BUILD SUCCESSFUL
Total time: 2 seconds
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[flex-asjs] $ cmd.exe /C 
"c:\Jenkins\tools\hudson.tasks.Ant_AntInstallation\c_apache-ant-1.9.3\bin\ant.bat
 -file build.xml -Dnightly=true -Denv.FLEX_DOWNLOAD_CACHE=C:\FlexDownloadCache 
-Djshint=C:\Users\apacheflexbuild\AppData\Roaming\npm\jshint_jenkins.cmd 
'"-Dbrowser=C:\Program Files (x86)\Mozilla Firefox\firefox.exe"' 
-Dgjslint=C:\Python27\Scripts\gjslint.exe -Dbuild.noprompt=true 
-Dplayerglobal.version=11.7 release create-md5 && exit %%ERRORLEVEL%%"
Buildfile: 

check-playerglobal-home:
 [echo] PLAYERGLOBAL_HOME is c:\Adobe\flashPlayer
 [echo] playerglobal.version is 11.7
 [echo] playerglobal.swc is c:\Adobe\flashPlayer/11.7/playerglobal.swc

check-air-home:
 [echo] AIR_HOME is c:\Adobe\AIRSDK40

check-falcon-home:
 [echo] FALCON_HOME is c:\Jenkins\workspace\flex-falcon\compiler

BUILD FAILED
:298: 
FALCON_HOME must be set to a folder with a lib sub-folder containing 
falcon-mxmlc.jar such as the compiler folder in flex-falcon repo or this folder 
if it has been converted into an FB-compatible SDK

Total time: 2 seconds
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Build step 'Invoke Ant' marked build as failure
Skipped archiving because build is not successful


[MAVEN-BUILD] FlexJS Framework (maven) - Build # 775 - Still Failing

2017-03-07 Thread Apache Jenkins Server
The Apache Jenkins build system has built FlexJS Framework (maven) (build #775)

Status: Still Failing

Check console output at 
https://builds.apache.org/job/FlexJS%20Framework%20(maven)/775/ to view the 
results.

Jenkins build is still unstable: flex-flexunit #915

2017-03-07 Thread flex . ci . builds
See 



Build failed in Jenkins: flex-falcon #1489

2017-03-07 Thread flex . ci . builds
See 

--
[...truncated 5178 lines...]
[junit] Generating test:
[junit] Compiling test:
[junit] -locale=en_US 
-external-library-path=c:\Adobe\flashPlayer\11.7\playerglobal.swc 
-library-path=C:\Jenkins\workspace\flex-sdk\frameworks\libs\framework.swc,C:\Jenkins\workspace\flex-sdk\frameworks\locale\en_US\framework_rb.swc
 
-namespace=http://ns.adobe.com/mxml/2009,C:\Jenkins\workspace\flex-sdk\frameworks\mxml-2009-manifest.xml
 

 
[junit] Loading configuration: 
C:\Jenkins\workspace\flex-sdk\frameworks\flex-config.xml
[junit] 
[junit] 2196 bytes written to 
C:\Jenkins\workspace\flex-falcon\compiler\target\junit-temp\MXMLPropertyNumberTests2664560478595845269.swf
 in 3.808 seconds
[junit] Executing test:
[junit] [c:\Adobe\flashPlayer\11.7\flashplayerdebugger.exe, 

[junit] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
9.845 sec
[junit] Running properties.MXMLPropertyStringTests
[junit] Generating test:
[junit] Compiling test:
[junit] -locale=en_US 
-external-library-path=c:\Adobe\flashPlayer\11.7\playerglobal.swc 
-library-path=C:\Jenkins\workspace\flex-sdk\frameworks\libs\framework.swc,C:\Jenkins\workspace\flex-sdk\frameworks\locale\en_US\framework_rb.swc
 
-namespace=http://ns.adobe.com/mxml/2009,C:\Jenkins\workspace\flex-sdk\frameworks\mxml-2009-manifest.xml
 

 
[junit] Loading configuration: 
C:\Jenkins\workspace\flex-sdk\frameworks\flex-config.xml
[junit] 
[junit] 2182 bytes written to 
C:\Jenkins\workspace\flex-falcon\compiler\target\junit-temp\MXMLPropertyStringTests5080898502828134564.swf
 in 2.152 seconds
[junit] Executing test:
[junit] [c:\Adobe\flashPlayer\11.7\flashplayerdebugger.exe, 

[junit] Generating test:
[junit] Compiling test:
[junit] -locale=en_US 
-external-library-path=c:\Adobe\flashPlayer\11.7\playerglobal.swc 
-library-path=C:\Jenkins\workspace\flex-sdk\frameworks\libs\framework.swc,C:\Jenkins\workspace\flex-sdk\frameworks\locale\en_US\framework_rb.swc
 
-namespace=http://ns.adobe.com/mxml/2009,C:\Jenkins\workspace\flex-sdk\frameworks\mxml-2009-manifest.xml
 

 
[junit] Loading configuration: 
C:\Jenkins\workspace\flex-sdk\frameworks\flex-config.xml
[junit] 
[junit] 2195 bytes written to 
C:\Jenkins\workspace\flex-falcon\compiler\target\junit-temp\MXMLPropertyStringTests847882801142786621.swf
 in 4.101 seconds
[junit] Executing test:
[junit] [c:\Adobe\flashPlayer\11.7\flashplayerdebugger.exe, 

[junit] Generating test:
[junit] Compiling test:
[junit] -locale=en_US 
-external-library-path=c:\Adobe\flashPlayer\11.7\playerglobal.swc 
-library-path=C:\Jenkins\workspace\flex-sdk\frameworks\libs\framework.swc,C:\Jenkins\workspace\flex-sdk\frameworks\locale\en_US\framework_rb.swc
 
-namespace=http://ns.adobe.com/mxml/2009,C:\Jenkins\workspace\flex-sdk\frameworks\mxml-2009-manifest.xml
 

 
[junit] Loading configuration: 
C:\Jenkins\workspace\flex-sdk\frameworks\flex-config.xml
[junit] 
[junit] 2183 bytes written to 
C:\Jenkins\workspace\flex-falcon\compiler\target\junit-temp\MXMLPropertyStringTests6692219774721000942.swf
 in 0.578 seconds
[junit] Executing test:
[junit] [c:\Adobe\flashPlayer\11.7\flashplayerdebugger.exe, 

[junit] Generating test:
[junit] Compiling test:
[junit] -locale=en_US 
-external-library-path=c:\Adobe\flashPlayer\11.7\playerglobal.swc 
-library-path=C:\Jenkins\workspace\flex-sdk\frameworks\libs\framework.swc,C:\Jenkins\workspace\flex-sdk\frameworks\locale\en_US\framework_rb.swc
 
-namespace=http://ns.adobe.com/mxml/2009,C:\Jenkins\workspace\flex-sdk\frameworks\mxml-2009-manifest.xml
 

 
[junit] Lo

git commit: [flex-falcon] [refs/heads/dual] - changes to tell FlashBuilder not to keep compiling the project

2017-03-07 Thread aharui
Repository: flex-falcon
Updated Branches:
  refs/heads/dual b18fa990e -> fba30de09


changes to tell FlashBuilder not to keep compiling the project


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/fba30de0
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/fba30de0
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/fba30de0

Branch: refs/heads/dual
Commit: fba30de09f7897a54704789eac114fefbec5695c
Parents: b18fa99
Author: Alex Harui 
Authored: Tue Mar 7 13:39:46 2017 -0800
Committer: Alex Harui 
Committed: Tue Mar 7 13:39:46 2017 -0800

--
 .../compiler/clients/JSCompilerEntryPoint.java  |  5 +++
 .../apache/flex/compiler/clients/MXMLJSC.java   | 26 ++
 .../flex/compiler/clients/MXMLJSCFlex.java  | 38 
 .../flex/compiler/clients/MXMLJSCNative.java| 38 
 .../flex/compiler/clients/MXMLJSCNode.java  | 38 
 .../main/java/flex2/tools/oem/Application.java  | 15 +---
 .../flex2/tools/oem/internal/OEMReport.java | 18 ++
 .../java/flex2/tools/oem/internal/OEMUtil.java  | 24 +
 8 files changed, 192 insertions(+), 10 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/fba30de0/compiler-jx/src/main/java/org/apache/flex/compiler/clients/JSCompilerEntryPoint.java
--
diff --git 
a/compiler-jx/src/main/java/org/apache/flex/compiler/clients/JSCompilerEntryPoint.java
 
b/compiler-jx/src/main/java/org/apache/flex/compiler/clients/JSCompilerEntryPoint.java
index 0ffa22e..6b028da 100644
--- 
a/compiler-jx/src/main/java/org/apache/flex/compiler/clients/JSCompilerEntryPoint.java
+++ 
b/compiler-jx/src/main/java/org/apache/flex/compiler/clients/JSCompilerEntryPoint.java
@@ -26,4 +26,9 @@ import java.util.List;
 public interface JSCompilerEntryPoint {
 public int mainNoExit(final String[] args, List problems,
   Boolean printProblems);
+
+public List getSourceList();
+
+public String getMainSource();
+
 }

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/fba30de0/compiler-jx/src/main/java/org/apache/flex/compiler/clients/MXMLJSC.java
--
diff --git 
a/compiler-jx/src/main/java/org/apache/flex/compiler/clients/MXMLJSC.java 
b/compiler-jx/src/main/java/org/apache/flex/compiler/clients/MXMLJSC.java
index db96db7..6f02afc 100644
--- a/compiler-jx/src/main/java/org/apache/flex/compiler/clients/MXMLJSC.java
+++ b/compiler-jx/src/main/java/org/apache/flex/compiler/clients/MXMLJSC.java
@@ -28,6 +28,7 @@ import java.io.OutputStream;
 import java.util.ArrayList;
 import java.util.Collection;
 import java.util.Collections;
+import java.util.LinkedList;
 import java.util.List;
 import java.util.Set;
 import java.util.TreeSet;
@@ -77,6 +78,7 @@ import org.apache.flex.compiler.targets.ITarget;
 import org.apache.flex.compiler.targets.ITarget.TargetType;
 import org.apache.flex.compiler.targets.ITargetSettings;
 import org.apache.flex.compiler.units.ICompilationUnit;
+import org.apache.flex.compiler.units.ICompilationUnit.UnitType;
 import org.apache.flex.swf.ISWF;
 import org.apache.flex.swf.SWF;
 import org.apache.flex.swf.types.RGB;
@@ -86,6 +88,7 @@ import org.apache.flex.utils.ArgumentUtil;
 import org.apache.flex.utils.FilenameNormalization;
 
 import com.google.common.base.Preconditions;
+import com.google.common.collect.ImmutableList;
 import com.google.common.collect.Iterables;
 
 /**
@@ -258,6 +261,7 @@ public class MXMLJSC implements JSCompilerEntryPoint, 
ProblemQueryProvider,
 protected IJSApplication jsTarget;
 private IJSPublisher jsPublisher;
 private MXMLC mxmlc;
+private JSCompilerEntryPoint lastCompiler;
 public boolean noLink;
 public OutputStream err;
 
@@ -338,6 +342,7 @@ public class MXMLJSC implements JSCompilerEntryPoint, 
ProblemQueryProvider,
break;
case JS_FLEX:
MXMLJSCFlex flex = new MXMLJSCFlex();
+   lastCompiler = flex;
result = flex.mainNoExit(removeASArgs(args), 
problems.getProblems(), false);
if (result != 0)
{
@@ -346,6 +351,7 @@ public class MXMLJSC implements JSCompilerEntryPoint, 
ProblemQueryProvider,
break;
case JS_NODE:
MXMLJSCNode node = new MXMLJSCNode();
+   lastCompiler = node;
result = node.mainNoExit(removeASArgs(args), 
problems.getProblems(), false);
if (result

git commit: [flex-asjs] [refs/heads/develop] - Move BlendBead to Graphics and use Shader Classes

2017-03-07 Thread yishayw
Repository: flex-asjs
Updated Branches:
  refs/heads/develop 4803c83ca -> 97d438c32


Move BlendBead to Graphics and use Shader Classes


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/97d438c3
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/97d438c3
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/97d438c3

Branch: refs/heads/develop
Commit: 97d438c32a678b1f2f9cdd805044ec8104a5f41e
Parents: 4803c83
Author: yishayw 
Authored: Wed Mar 8 05:38:22 2017 +0200
Committer: yishayw 
Committed: Wed Mar 8 05:38:22 2017 +0200

--
 .../Graphics/src/main/flex/GraphicsClasses.as   |   9 --
 .../org/apache/flex/graphics/beads/BlendBead.as | 142 +++
 .../src/main/resources/basic-manifest.xml   |   1 +
 .../org/apache/flex/html/beads/BlendBead.as |  97 -
 .../HTML/src/main/resources/basic-manifest.xml  |   1 -
 5 files changed, 143 insertions(+), 107 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/97d438c3/frameworks/projects/Graphics/src/main/flex/GraphicsClasses.as
--
diff --git a/frameworks/projects/Graphics/src/main/flex/GraphicsClasses.as 
b/frameworks/projects/Graphics/src/main/flex/GraphicsClasses.as
index 5836c9e..3b87a56 100644
--- a/frameworks/projects/Graphics/src/main/flex/GraphicsClasses.as
+++ b/frameworks/projects/Graphics/src/main/flex/GraphicsClasses.as
@@ -41,15 +41,6 @@ internal class GraphicsClasses
COMPILE::SWF
{
import org.apache.flex.graphics.utils.PathHelper; PathHelper;
-   import 
org.apache.flex.graphics.utils.shaderClasses.ColorBurnShader; ColorBurnShader;
-   import 
org.apache.flex.graphics.utils.shaderClasses.ColorDodgeShader; ColorDodgeShader;
-   import 
org.apache.flex.graphics.utils.shaderClasses.ColorShader; ColorShader;
-   import 
org.apache.flex.graphics.utils.shaderClasses.ExclusionShader; ExclusionShader;
-   import org.apache.flex.graphics.utils.shaderClasses.HueShader; 
HueShader;
-   import 
org.apache.flex.graphics.utils.shaderClasses.LuminosityMaskShader; 
LuminosityMaskShader;
-   import 
org.apache.flex.graphics.utils.shaderClasses.LuminosityShader; LuminosityShader;
-   import 
org.apache.flex.graphics.utils.shaderClasses.SaturationShader; SaturationShader;
-   import 
org.apache.flex.graphics.utils.shaderClasses.SoftLightShader; SoftLightShader;
}
import org.apache.flex.graphics.QuadraticCurve; QuadraticCurve;
import org.apache.flex.graphics.ICircle; ICircle;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/97d438c3/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/beads/BlendBead.as
--
diff --git 
a/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/beads/BlendBead.as
 
b/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/beads/BlendBead.as
new file mode 100644
index 000..e45c428
--- /dev/null
+++ 
b/frameworks/projects/Graphics/src/main/flex/org/apache/flex/graphics/beads/BlendBead.as
@@ -0,0 +1,142 @@
+
+//
+//  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.
+//
+
+package org.apache.flex.graphics.beads
+{
+   import flash.display.Shader;
+   
+   import org.apache.flex.core.IBead;
+   import org.apache.flex.core.IStrand;
+   import org.apache.flex.graphics.utils.shaderClasses.ColorBurnShader;
+   import org.apache.flex.graphics.utils.shaderClasses.ColorDodgeShader;
+   import org.apache.flex.graphics.utils.shaderClasses.ColorShader;
+   import org.apache.flex.graphics.utils.shaderClasses.ExclusionShader;
+   import org.apache.flex.graphics.utils.shaderClasses.HueShader;
+

Build failed in Jenkins: flex-asjs #2056

2017-03-07 Thread flex . ci . builds
See 

--
[...truncated 5067 lines...]
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'

Build failed in Jenkins: flex-blazeds #903

2017-03-07 Thread flex . ci . builds
See 

--
Started by timer
Building remotely on flex_sdk_slave2 in workspace 

 > C:\Program Files (x86)\Git\cmd\git.exe rev-parse --is-inside-work-tree # 
 > timeout=10
Fetching changes from the remote Git repository
 > C:\Program Files (x86)\Git\cmd\git.exe config remote.origin.url 
 > https://git-wip-us.apache.org/repos/asf/flex-blazeds.git # timeout=10
Fetching upstream changes from 
https://git-wip-us.apache.org/repos/asf/flex-blazeds.git
 > C:\Program Files (x86)\Git\cmd\git.exe --version # timeout=10
 > C:\Program Files (x86)\Git\cmd\git.exe fetch --tags --progress 
 > https://git-wip-us.apache.org/repos/asf/flex-blazeds.git 
 > +refs/heads/*:refs/remotes/origin/*
 > C:\Program Files (x86)\Git\cmd\git.exe rev-parse 
 > "refs/remotes/origin/develop^{commit}" # timeout=10
 > C:\Program Files (x86)\Git\cmd\git.exe rev-parse 
 > "refs/remotes/origin/origin/develop^{commit}" # timeout=10
Checking out Revision 0578e10044144695ce08c2303660106297bbd284 
(refs/remotes/origin/develop)
 > C:\Program Files (x86)\Git\cmd\git.exe config core.sparsecheckout # 
 > timeout=10
 > C:\Program Files (x86)\Git\cmd\git.exe checkout -f 
 > 0578e10044144695ce08c2303660106297bbd284
 > C:\Program Files (x86)\Git\cmd\git.exe rev-list 
 > 0578e10044144695ce08c2303660106297bbd284 # timeout=10
Parsing POMs
Modules changed, recalculating dependency graph
maven32-agent.jar already up to date
maven32-interceptor.jar already up to date
maven3-interceptor-commons.jar already up to date
[flex-blazeds] $ "C:\Program Files\Java\jdk1.7.0_67/bin/java" -cp 
c:\Jenkins\maven32-agent.jar;c:\Jenkins\tools\hudson.tasks.Maven_MavenInstallation\Maven_3.2.1\boot\plexus-classworlds-2.5.1.jar;c:\Jenkins\tools\hudson.tasks.Maven_MavenInstallation\Maven_3.2.1/conf/logging
 jenkins.maven3.agent.Maven32Main 
c:\Jenkins\tools\hudson.tasks.Maven_MavenInstallation\Maven_3.2.1 
C:\Users\apacheflexbuild\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\2\32f78882-5bca442d
 c:\Jenkins\maven32-interceptor.jar c:\Jenkins\maven3-interceptor-commons.jar 
63214
<===[JENKINS REMOTING CAPACITY]===>   channel started
Executing Maven:  -B -f 
 clean 
verify
[INFO] Scanning for projects...
[INFO] 
[INFO] Reactor Build Order:
[INFO] 
[INFO] Apache Flex - BlazeDS
[INFO] flex-messaging-archetypes
[INFO] blazeds-spring-boot-example-archetype
[INFO] flex-messaging-common
[INFO] flex-messaging-core
[INFO] flex-messaging-proxy
[INFO] flex-messaging-remoting
[INFO] flex-messaging-opt
[INFO] flex-messaging-opt-tomcat
[INFO] flex-messaging-opt-tomcat-base
[INFO] flex-messaging-opt-tomcat-4
[INFO] flex-messaging-opt-tomcat-6
[INFO] flex-messaging-opt-tomcat-7
[INFO] blazeds-spring-boot-starter
[INFO] 
[INFO] Using the builder 
org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder
 with a thread count of 1
[INFO] 
[INFO] 
[INFO] Building Apache Flex - BlazeDS 4.7.3-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ blazeds ---
[INFO] Deleting 

[INFO] 
[INFO] --- jacoco-maven-plugin:0.7.6.201602180812:prepare-agent (pre-unit-test) 
@ blazeds ---
[INFO] surefireArgLine set to 
-javaagent:C:\\Users\\apacheflexbuild\\.m2\\repository\\org\\jacoco\\org.jacoco.agent\\0.7.6.201602180812\\org.jacoco.agent-0.7.6.201602180812-runtime.jar=destfile=c:\\Jenkins\\workspace\\flex-blazeds\\target\\coverage-reports\\jacoco-ut.exec
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ blazeds ---
[INFO] 
[INFO] --- jacoco-maven-plugin:0.7.6.201602180812:report (post-unit-test) @ 
blazeds ---
[INFO] Skipping JaCoCo execution due to missing execution data 
file:
[INFO] 
[INFO] --- animal-sniffer-maven-plugin:1.15:check (check-jdk-1.6) @ blazeds ---
[INFO] Checking unresolved references to org.codehaus.mojo.signature:java16:1.1
[INFO] 
[INFO] --- maven-site-plugin:3.4:attach-descriptor (attach-descriptor) @ 
blazeds ---
[INFO] 
[INFO] --- jacoco-maven-plugin:0.7.6.201602180812:prepare-agent 
(pre-integration-test) @ blazeds ---
[INFO] failsafeArgLine set to 
-javaagent:C:\\Users\\apacheflexbuild\\.m2\\repository\\org\\jacoco\\org.jacoco.agent\\0.7.6.201602180812\\org.jacoco.agent-0.7.6.201602180812-runtime.jar=destfile=c:\\Jenkins\\workspace\\flex-blazeds\\target\\coverage-reports\\jacoco-it.exec
[INFO] 
[INFO] --- jacoco-maven-plugin:0.7.6.201602

[MAVEN-BUILD] FlexJS Framework (maven) - Build # 776 - Still Failing

2017-03-07 Thread Apache Jenkins Server
The Apache Jenkins build system has built FlexJS Framework (maven) (build #776)

Status: Still Failing

Check console output at 
https://builds.apache.org/job/FlexJS%20Framework%20(maven)/776/ to view the 
results.

Build failed in Jenkins: flex-asjs #2057

2017-03-07 Thread flex . ci . builds
See 

Changes:

[yishayjobs] Move BlendBead to Graphics and use Shader Classes

--
[...truncated 5076 lines...]
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'
 [java] Dependencies calculated for 
'

[2/2] git commit: [flex-falcon] [refs/heads/develop] - handle a few more cases with super

2017-03-07 Thread aharui
handle a few more cases with super


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/85a17010
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/85a17010
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/85a17010

Branch: refs/heads/develop
Commit: 85a170101d19dcfe51a177fdb21e34bc9bc43c94
Parents: fde0386
Author: Alex Harui 
Authored: Tue Mar 7 22:34:21 2017 -0800
Committer: Alex Harui 
Committed: Tue Mar 7 22:34:21 2017 -0800

--
 .../internal/codegen/js/goog/JSGoogEmitter.java |  3 +-
 .../codegen/js/jx/MemberAccessEmitter.java  | 16 ++-
 .../js/flexjs/TestFlexJSExpressions.java| 45 
 3 files changed, 62 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/85a17010/compiler-jx/src/main/java/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogEmitter.java
--
diff --git 
a/compiler-jx/src/main/java/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogEmitter.java
 
b/compiler-jx/src/main/java/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogEmitter.java
index 8486ab0..98a4015 100644
--- 
a/compiler-jx/src/main/java/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogEmitter.java
+++ 
b/compiler-jx/src/main/java/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogEmitter.java
@@ -909,7 +909,8 @@ public class JSGoogEmitter extends JSEmitter implements 
IJSGoogEmitter
 if (definition instanceof FunctionDefinition &&
 !((FunctionDefinition)definition).isStatic() &&
 (!(definition instanceof AccessorDefinition)) &&
-node instanceof MemberAccessExpressionNode)
+node instanceof MemberAccessExpressionNode &&
+
((MemberAccessExpressionNode)node).getLeftOperandNode().getNodeID() != 
ASTNodeID.SuperID)
 {
 emitClosureStart();
 getWalker().walk(node);

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/85a17010/compiler-jx/src/main/java/org/apache/flex/compiler/internal/codegen/js/jx/MemberAccessEmitter.java
--
diff --git 
a/compiler-jx/src/main/java/org/apache/flex/compiler/internal/codegen/js/jx/MemberAccessEmitter.java
 
b/compiler-jx/src/main/java/org/apache/flex/compiler/internal/codegen/js/jx/MemberAccessEmitter.java
index 0c37490..2f5f278 100644
--- 
a/compiler-jx/src/main/java/org/apache/flex/compiler/internal/codegen/js/jx/MemberAccessEmitter.java
+++ 
b/compiler-jx/src/main/java/org/apache/flex/compiler/internal/codegen/js/jx/MemberAccessEmitter.java
@@ -269,7 +269,10 @@ public class MemberAccessEmitter extends JSSubEmitter 
implements
 {
write(ASEmitterTokens.COMMA);
write(ASEmitterTokens.SPACE);
-   writeLeftSide(node, leftNode, rightNode);
+   if (leftNode.getNodeID() == ASTNodeID.SuperID)
+   write(ASEmitterTokens.THIS);
+   else
+   writeLeftSide(node, leftNode, rightNode);
getEmitter().emitClosureEnd(node, def);
 }
 
@@ -311,6 +314,17 @@ public class MemberAccessEmitter extends JSSubEmitter 
implements
 write(ASEmitterTokens.PAREN_CLOSE);
 return false;
 }
+else if (leftNode.getNodeID() == ASTNodeID.SuperID
+&& (rightDef != null && rightDef instanceof 
FunctionDefinition))
+{
+write(getEmitter().formatQualifiedName(
+
getEmitter().getModel().getCurrentClass().getQualifiedName()));
+write(ASEmitterTokens.MEMBER_ACCESS);
+write(JSGoogEmitterTokens.SUPERCLASS);
+write(ASEmitterTokens.MEMBER_ACCESS);
+write(rightDef.getBaseName());
+return false;
+}
 }
 else
 {

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/85a17010/compiler-jx/src/test/java/org/apache/flex/compiler/internal/codegen/js/flexjs/TestFlexJSExpressions.java
--
diff --git 
a/compiler-jx/src/test/java/org/apache/flex/compiler/internal/codegen/js/flexjs/TestFlexJSExpressions.java
 
b/compiler-jx/src/test/java/org/apache/flex/compiler/internal/codegen/js/flexjs/TestFlexJSExpressions.java
index 3331fc6..17c9940 100644
--- 
a/compiler-jx/src/test/java/org/apache/flex/compiler/internal/codegen/js/flexjs/TestFlexJSExpressions.java
+++ 
b/compiler-jx/src/test/java/org/apache/flex/compiler/internal/codegen/js/flexjs/TestFlexJSExpressions.java
@@ -102,6 +102,51 @@ public 

[1/2] git commit: [flex-falcon] [refs/heads/develop] - fix some tests now that we have better error checking

2017-03-07 Thread aharui
Repository: flex-falcon
Updated Branches:
  refs/heads/develop 445854b7e -> 85a170101


fix some tests now that we have better error checking


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/fde03868
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/fde03868
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/fde03868

Branch: refs/heads/develop
Commit: fde038685889b3d9e821937143e14bb5fd9e7cbb
Parents: 445854b
Author: Alex Harui 
Authored: Tue Mar 7 22:34:03 2017 -0800
Committer: Alex Harui 
Committed: Tue Mar 7 22:34:03 2017 -0800

--
 .../mxml/flexjs/TestFlexJSMXMLApplication.java  | 44 
 1 file changed, 36 insertions(+), 8 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/fde03868/compiler-jx/src/test/java/org/apache/flex/compiler/internal/codegen/mxml/flexjs/TestFlexJSMXMLApplication.java
--
diff --git 
a/compiler-jx/src/test/java/org/apache/flex/compiler/internal/codegen/mxml/flexjs/TestFlexJSMXMLApplication.java
 
b/compiler-jx/src/test/java/org/apache/flex/compiler/internal/codegen/mxml/flexjs/TestFlexJSMXMLApplication.java
index 8cb54be..d49661d 100644
--- 
a/compiler-jx/src/test/java/org/apache/flex/compiler/internal/codegen/mxml/flexjs/TestFlexJSMXMLApplication.java
+++ 
b/compiler-jx/src/test/java/org/apache/flex/compiler/internal/codegen/mxml/flexjs/TestFlexJSMXMLApplication.java
@@ -297,7 +297,7 @@ public class TestFlexJSMXMLApplication extends 
FlexJSTestBase
 String code = "http://ns.adobe.com/mxml/2009\"; 
xmlns:basic=\"library://ns.apache.org/flexjs/basic\">"
+ "";
++ "]]>";
 
 IMXMLDocumentNode dnode = (IMXMLDocumentNode) getNode(code,
IMXMLDocumentNode.class, 
FlexJSTestBase.WRAP_LEVEL_NONE);
@@ -316,6 +316,7 @@ public class TestFlexJSMXMLApplication extends 
FlexJSTestBase
"goog.provide('AppName');\n" +
"\n" +
"goog.require('org.apache.flex.core.Application');\n" +
+   "goog.require('org.apache.flex.core.View');\n" +
"goog.require('org.apache.flex.html.Label');\n" +
"goog.require('org.apache.flex.net.HTTPConstants');\n" +
"\n" +
@@ -330,6 +331,12 @@ public class TestFlexJSMXMLApplication extends 
FlexJSTestBase
"  \n" +
"  /**\n" +
"   * @private\n" +
+   "   * @type {org.apache.flex.core.View}\n" +
+   "   */\n" +
+   "  this.$ID1_;\n" +
+   "  \n" +
+   "  /**\n" +
+   "   * @private\n" +
"   * @type {org.apache.flex.html.Label}\n" +
"   */\n" +
"  this.$ID0_;\n" +
@@ -350,7 +357,7 @@ public class TestFlexJSMXMLApplication extends 
FlexJSTestBase
"  ([1,\n" +
"'initialView',\n" +
"false,\n" +
-   "[org.apache.flex.html.Label, 1, '_id', true, '$ID0', 
0, 0, null],\n" +
+   "[org.apache.flex.core.View, 1, '_id', true, '$ID1', 0, 
0, [org.apache.flex.html.Label, 1, '_id', true, '$ID0', 0, 0, null]],\n" +
"0,\n" +
"0\n" +
"  ]);\n" +
@@ -412,7 +419,7 @@ public class TestFlexJSMXMLApplication extends 
FlexJSTestBase
 String code = "http://ns.adobe.com/mxml/2009\"; 
xmlns:basic=\"library://ns.apache.org/flexjs/basic\">"
+ "";
++ "]]>";
 
 IMXMLDocumentNode dnode = (IMXMLDocumentNode) getNode(code,
IMXMLDocumentNode.class, 
FlexJSTestBase.WRAP_LEVEL_NONE);
@@ -431,6 +438,7 @@ public class TestFlexJSMXMLApplication extends 
FlexJSTestBase
"goog.provide('AppName');\n" +
"\n" +
"goog.require('org.apache.flex.core.Application');\n" +
+   "goog.require('org.apache.flex.core.View');\n" +
"goog.require('org.apache.flex.html.Label');\n" +
"goog.require('org.apache.flex.net.HTTPConstants');\n" +
"\n" +
@@ -445,6 +453,12 @@ public class TestFlexJSMXMLApplication extends 
FlexJSTestBase
"  \n" +
"  /**\n" +
"   * @private\n" +
+   "   * @type {org.apache.flex.core.View}\n" +
+   "   */\n" +
+   "  this.$ID1_

Build failed in Jenkins: flex-falcon #1490

2017-03-07 Thread flex . ci . builds
See 

--
[...truncated 5191 lines...]
[junit] Generating test:
[junit] Compiling test:
[junit] -locale=en_US 
-external-library-path=c:\Adobe\flashPlayer\11.7\playerglobal.swc 
-library-path=C:\Jenkins\workspace\flex-sdk\frameworks\libs\framework.swc,C:\Jenkins\workspace\flex-sdk\frameworks\locale\en_US\framework_rb.swc
 
-namespace=http://ns.adobe.com/mxml/2009,C:\Jenkins\workspace\flex-sdk\frameworks\mxml-2009-manifest.xml
 

 
[junit] Loading configuration: 
C:\Jenkins\workspace\flex-sdk\frameworks\flex-config.xml
[junit] 
[junit] 2197 bytes written to 
C:\Jenkins\workspace\flex-falcon\compiler\target\junit-temp\MXMLPropertyNumberTests7161143819380846528.swf
 in 4.153 seconds
[junit] Executing test:
[junit] [c:\Adobe\flashPlayer\11.7\flashplayerdebugger.exe, 

[junit] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
10.453 sec
[junit] Running properties.MXMLPropertyStringTests
[junit] Generating test:
[junit] Compiling test:
[junit] -locale=en_US 
-external-library-path=c:\Adobe\flashPlayer\11.7\playerglobal.swc 
-library-path=C:\Jenkins\workspace\flex-sdk\frameworks\libs\framework.swc,C:\Jenkins\workspace\flex-sdk\frameworks\locale\en_US\framework_rb.swc
 
-namespace=http://ns.adobe.com/mxml/2009,C:\Jenkins\workspace\flex-sdk\frameworks\mxml-2009-manifest.xml
 

 
[junit] Loading configuration: 
C:\Jenkins\workspace\flex-sdk\frameworks\flex-config.xml
[junit] 
[junit] 2195 bytes written to 
C:\Jenkins\workspace\flex-falcon\compiler\target\junit-temp\MXMLPropertyStringTests647290780698817073.swf
 in 5.246 seconds
[junit] Executing test:
[junit] [c:\Adobe\flashPlayer\11.7\flashplayerdebugger.exe, 

[junit] Generating test:
[junit] Compiling test:
[junit] -locale=en_US 
-external-library-path=c:\Adobe\flashPlayer\11.7\playerglobal.swc 
-library-path=C:\Jenkins\workspace\flex-sdk\frameworks\libs\framework.swc,C:\Jenkins\workspace\flex-sdk\frameworks\locale\en_US\framework_rb.swc
 
-namespace=http://ns.adobe.com/mxml/2009,C:\Jenkins\workspace\flex-sdk\frameworks\mxml-2009-manifest.xml
 

 
[junit] Loading configuration: 
C:\Jenkins\workspace\flex-sdk\frameworks\flex-config.xml
[junit] 
[junit] 2182 bytes written to 
C:\Jenkins\workspace\flex-falcon\compiler\target\junit-temp\MXMLPropertyStringTests1292078432989609059.swf
 in 0.625 seconds
[junit] Executing test:
[junit] [c:\Adobe\flashPlayer\11.7\flashplayerdebugger.exe, 

[junit] Generating test:
[junit] Compiling test:
[junit] -locale=en_US 
-external-library-path=c:\Adobe\flashPlayer\11.7\playerglobal.swc 
-library-path=C:\Jenkins\workspace\flex-sdk\frameworks\libs\framework.swc,C:\Jenkins\workspace\flex-sdk\frameworks\locale\en_US\framework_rb.swc
 
-namespace=http://ns.adobe.com/mxml/2009,C:\Jenkins\workspace\flex-sdk\frameworks\mxml-2009-manifest.xml
 

 
[junit] Loading configuration: 
C:\Jenkins\workspace\flex-sdk\frameworks\flex-config.xml
[junit] 
[junit] 2192 bytes written to 
C:\Jenkins\workspace\flex-falcon\compiler\target\junit-temp\MXMLPropertyStringTests8738163363975769786.swf
 in 4.000 seconds
[junit] Executing test:
[junit] [c:\Adobe\flashPlayer\11.7\flashplayerdebugger.exe, 

[junit] Generating test:
[junit] Compiling test:
[junit] -locale=en_US 
-external-library-path=c:\Adobe\flashPlayer\11.7\playerglobal.swc 
-library-path=C:\Jenkins\workspace\flex-sdk\frameworks\libs\framework.swc,C:\Jenkins\workspace\flex-sdk\frameworks\locale\en_US\framework_rb.swc
 
-namespace=http://ns.adobe.com/mxml/2009,C:\Jenkins\workspace\flex-sdk\frameworks\mxml-2009-manifest.xml
 

 
[junit] Lo

Jenkins build is back to normal : flex-tlf #1019

2017-03-07 Thread flex . ci . builds
See