You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@flex.apache.org by da...@lispa.it on 2017/04/11 07:38:23 UTC

[FlexJs]: Error: Access of possibly undefined property JSON

Hi all,

I'm try to compile FlexJs on a Debian GNU/Linux Stretch, but I have the following errors:

compile:
     [echo] Compiling libs/Core.swc
     [echo] FLEX_HOME: /home/flex/FlexJS/flex-asjs
     [echo] FALCON_HOME: /home/flex/FlexJS/flex-asjs/../flex-falcon/compiler
     [echo] playerglobal.version: 11.1
     [echo] target: /home/flex/FlexJS/flex-asjs/frameworks/projects/Core/target/Core.swc
     [echo] copy to: /home/flex/FlexJS/flex-asjs/frameworks/libs/Core.swc
    [compc] Loading configuration: /home/flex/FlexJS/flex-asjs/frameworks/projects/Core/src/main/config/compile-as-config.xml
    [compc] 
    [compc] 
    [compc] /home/flex/FlexJS/flex-asjs/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleValuesImpl.as(167): col: 20 Error: Access of possibly undefined property JSON.
    [compc] 
    [compc]             return JSON.parse("{" + value + "}");
    [compc]                    ^
    [compc] 
    [compc] /home/flex/FlexJS/flex-asjs/frameworks/projects/Core/src/main/flex/org/apache/flex/geom/Rectangle.as(261): col: 21 Error: Access of possibly undefined property JSON.
    [compc] 
    [compc] 			var obj:Object = JSON.parse(str);
    [compc] 			                 ^
    [compc] 

BUILD FAILED
/home/flex/FlexJS/flex-asjs/build.xml:499: The following error occurred while executing this line:
/home/flex/FlexJS/flex-asjs/frameworks/build.xml:80: The following error occurred while executing this line:
/home/flex/FlexJS/flex-asjs/frameworks/build.xml:186: The following error occurred while executing this line:
/home/flex/FlexJS/flex-asjs/frameworks/projects/Core/build.xml:81: compc task failed.


I have try to looking for a solution on internet, but I have failed :-(
I have try all the combination of the following:
* import com.adobe.serialization.json;
* return com.adobe.serialization.json.JSON.parse("{" + value + "}");

without success.

What can I do to resolve this problem?

I have "echo":
* playerglobal.version <- it is corrected installed
* target <- it is building the Core.swc
* where to copy

And I have see that there is a Core.swc here:
$ find  -iname Core.swc
./flex-sdk/frameworks/libs/core.swc

Eventually I can use this core.swc?

Or, I have also installed the binary, and I have found these:

$  find  -iname Core.swc
./apache-flex-flexjs-0.7.0-bin/frameworks/libs/Core.swc
./apache-flex-flexjs-0.7.0-bin/frameworks/projects/Core/target/Core.swc
./AirSDK/frameworks/libs/core.swc

Eventually I can use one of these?

I prefer to solve the problem and have a successfully compilation.

Thanks
Davide

Re: [FlexJs]: Error: Access of possibly undefined property JSON

Posted by Alex Harui <ah...@adobe.com>.

On 4/11/17, 12:38 AM, "davide.prina@lispa.it" <da...@lispa.it>
wrote:

>Hi all,
>
>I'm try to compile FlexJs on a Debian GNU/Linux Stretch, but I have the
>following errors:
>
>compile:
>     [echo] Compiling libs/Core.swc
>     [echo] FLEX_HOME: /home/flex/FlexJS/flex-asjs
>     [echo] FALCON_HOME:
>/home/flex/FlexJS/flex-asjs/../flex-falcon/compiler
>     [echo] playerglobal.version: 11.1
>     [echo] target:
>/home/flex/FlexJS/flex-asjs/frameworks/projects/Core/target/Core.swc
>     [echo] copy to: /home/flex/FlexJS/flex-asjs/frameworks/libs/Core.swc
>    [compc] Loading configuration:
>/home/flex/FlexJS/flex-asjs/frameworks/projects/Core/src/main/config/compi
>le-as-config.xml
>    [compc] 
>    [compc] 
>    [compc] 
>/home/flex/FlexJS/flex-asjs/frameworks/projects/Core/src/main/flex/org/apa
>che/flex/core/SimpleValuesImpl.as(167): col: 20 Error: Access of possibly
>undefined property JSON.
>    [compc] 
>    [compc]             return JSON.parse("{" + value + "}");
>    [compc]                    ^
>    [compc] 
>    [compc] 
>/home/flex/FlexJS/flex-asjs/frameworks/projects/Core/src/main/flex/org/apa
>che/flex/geom/Rectangle.as(261): col: 21 Error: Access of possibly
>undefined property JSON.
>    [compc] 
>    [compc] 			var obj:Object = JSON.parse(str);
>    [compc] 			                 ^
>    [compc] 
>
>
>I prefer to solve the problem and have a successfully compilation.

Hi Davide, which version of the sources are you using?  I believe Justin
recently fixed the nightly build for, but earlier releases didn't work.

Thanks,
-Alex


Re: [FlexJs]: Error: Access of possibly undefined property JSON

Posted by da...@lispa.it.
davide.prina ha scritto:

>     [compc] /home/flex/FlexJS/flex-asjs/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleValuesImpl.as(167): col: 20 Error: 
> Access of possibly undefined property JSON.
>     [compc] 
>     [compc]             return JSON.parse("{" + value + "}");
>     [compc]                    ^
>     [compc] 
>     [compc] /home/flex/FlexJS/flex-asjs/frameworks/projects/Core/src/main/flex/org/apache/flex/geom/Rectangle.as(261): col: 21 Error: Access 
> of possibly undefined property JSON.

I have solved inserting the playerglobal.swc file in the configuration file flex-asjs/frameworks/projects/Core/src/main/config/compile-as-config.xml

       <external-library-path>
                <path-element>${env.AIR_HOME}/frameworks/libs/air/airglobal.swc</path-element>
                <path-element>/home/flex/FlexJS/librerie/player/11.1/playerglobal11_1.swc</path-element>
        </external-library-path>

But now I have others errors...

Probably I miss some steps... but how are they?

Thanks
Davide

Re: [FlexJs]: Error: Access of possibly undefined property JSON

Posted by da...@lispa.it.
Hi Piotrz,

piotrz ha scritto:

> Failing tests are for sure not good, but in order to move forward try to
> skip them using:
>
> -DskipTests 

ok, this work, but in the flex-asjs I have had some errors.

What I have done for now:

1) I have downloaded/extracted fleshdebugger for Linux
https://fpdownload.macromedia.com/pub/flashplayer/updaters/25/flash_player_sa_linux_debug.x86_64.tar.gz

2) I have downloaded/extracted jdk1.8.0_121

3) maven was already installed on my Debian box

4) I have created a env.sh file:

---8<---8<---8<---8<---8<---8<---8<---8<---8<
#!/bin/bash

export JAVA_HOME=/home/flex/java/jdk1.8.0_121
export MAVEN_HOME=/usr/share/maven
export FLASHPLAYER_DEBUGGER=/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger
---8<---8<---8<---8<---8<---8<---8<---8<---8<

NOTE: I think it is better to insert the set of the JAVA_HOME into the guide
NOTE: if you have a proxy with a password you must set they
      https://maven.apache.org/guides/mini/guide-proxies.html
      I have set it in the global settings.xml (/etc/maven/settings.xml)
      Setting it in the local user don't work...
      Remember to set http and https proxy

5) flex-falcon
$ git clone https://git-wip-us.apache.org/repos/asf/flex-falcon.git flex-falcon
$ cd flex-falcon
$ git checkout develop
$ mvn -s settings-template.xml clean install

it generate errors on testing

so I run

$ mvn -s settings-template.xml -DskipTests clean install

6) flex-typedefs
$ git clone https://git-wip-us.apache.org/repos/asf/flex-typedefs.git flex-typedefs
$ cd flex-typedefs
$ git checkout develop
$ mvn -s settings-template.xml clean install

build successfully, but I have some of these:

[INFO] 
[INFO] --- flexjs-maven-plugin:0.8.0-SNAPSHOT:generate-extern (default-generate-extern) @ flexjs-typedefs-node ---
[INFO] Executing EXTERNC in tool group FlexJS with args: [-load-config=/home/flex/FlexJS/FlexJS_maven/flex-typedefs/node/target/generate-externc-config.xml]
punycode parameters not found!  0
dgram parameters not found!  0
fs parameters not found!  0
buffer parameters not found!  0
readline parameters not found!  0
os parameters not found!  0
tty parameters not found!  0
url parameters not found!  0
util parameters not found!  0
vm parameters not found!  0
domain parameters not found!  0
zlib parameters not found!  0
querystring parameters not found!  0
http parameters not found!  0
crypto parameters not found!  0
https parameters not found!  0
dns parameters not found!  0
child_process parameters not found!  0
repl parameters not found!  0
path parameters not found!  0

Can I ignore they?

7) flex-asjs
$ git clone https://git-wip-us.apache.org/repos/asf/flex-asjs.git flex-asjs
$ cd flex-asjs
$ git checkout develop
$ mvn -s settings-template.xml clean install

[...]
[WARNING] Failed to notify spy org.apache.flex.utilities.converter.mavenextension.FlexEventSpy: Caught exception while downloading and converting artifact.
Downloading: https://repository.apache.org/content/repositories/releases/com/adobe/fontkit/1.0/fontkit-1.0.jar
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO] 
[INFO] Apache Flex - FlexJS: Framework: Parent ............ SUCCESS [  5.387 s]
[INFO] Apache Flex - FlexJS: Framework .................... SUCCESS [  0.514 s]
[INFO] Apache Flex - FlexJS: Framework: Fonts ............. FAILURE [  9.299 s]
[INFO] Apache Flex - FlexJS: Framework: Libs .............. SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: Core ........ SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: Binding ..... SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: Collections . SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: Graphics .... SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: HTML ........ SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: Charts ...... SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: Effects ..... SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: CreateJS .... SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: DragDrop .... SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: Express ..... SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: Flat ........ SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: Formatters .. SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: FontAwesome . SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: GoogleMaps .. SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: HTML5 ....... SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: JQuery ...... SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: Language .... SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: Material Design Lite SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: Mobile ...... SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: Network ..... SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: Reflection .. SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: Storage ..... SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Libs: XML ......... SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Archetypes ........ SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Archetypes: Simple FlexJS Application SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Archetypes: Simple FlexJS Pure-JS Application SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Archetypes: Simple FlexJS Pure-SWF Application SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Archetypes: Simple FlexJS Library SKIPPED
[INFO] Apache Flex - FlexJS: Framework: Archetypes: Simple FlexJS Typedef Library SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 18.010 s
[INFO] Finished at: 2017-04-13T10:43:10+02:00
[INFO] Final Memory: 29M/71M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java (compile-font) on project Fonts: Execution compile-font of goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java failed: Plugin org.codehaus.mojo:exec-maven-plugin:1.5.0 or one of its dependencies could not be resolved: Could not find artifact com.adobe:fontkit:jar:1.0 in apache-plugins-release (https://repository.apache.org/content/repositories/releases) -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java (compile-font) on project Fonts: Execution compile-font of goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java failed: Plugin org.codehaus.mojo:exec-maven-plugin:1.5.0 or one of its dependencies could not be resolved: Could not find artifact com.adobe:fontkit:jar:1.0 in apache-plugins-release (https://repository.apache.org/content/repositories/releases)
	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:212)
	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
	at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)
	at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)
	at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
	at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
	at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307)
	at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193)
	at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106)
	at org.apache.maven.cli.MavenCli.execute(MavenCli.java:863)
	at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:288)
	at org.apache.maven.cli.MavenCli.main(MavenCli.java:199)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
	at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
	at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
	at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
Caused by: org.apache.maven.plugin.PluginExecutionException: Execution compile-font of goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java failed: Plugin org.codehaus.mojo:exec-maven-plugin:1.5.0 or one of its dependencies could not be resolved: Could not find artifact com.adobe:fontkit:jar:1.0 in apache-plugins-release (https://repository.apache.org/content/repositories/releases)
	at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:106)
	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:207)
	... 20 more
Caused by: org.apache.maven.plugin.PluginResolutionException: Plugin org.codehaus.mojo:exec-maven-plugin:1.5.0 or one of its dependencies could not be resolved: Could not find artifact com.adobe:fontkit:jar:1.0 in apache-plugins-release (https://repository.apache.org/content/repositories/releases)
	at org.apache.maven.plugin.internal.DefaultPluginDependenciesResolver.resolveInternal(DefaultPluginDependenciesResolver.java:218)
	at org.apache.maven.plugin.internal.DefaultPluginDependenciesResolver.resolve(DefaultPluginDependenciesResolver.java:149)
	at org.apache.maven.plugin.internal.DefaultMavenPluginManager.createPluginRealm(DefaultMavenPluginManager.java:401)
	at org.apache.maven.plugin.internal.DefaultMavenPluginManager.setupPluginRealm(DefaultMavenPluginManager.java:372)
	at org.apache.maven.plugin.DefaultBuildPluginManager.getPluginRealm(DefaultBuildPluginManager.java:231)
	at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:102)
	... 21 more
Caused by: org.eclipse.aether.resolution.ArtifactResolutionException: Could not find artifact com.adobe:fontkit:jar:1.0 in apache-plugins-release (https://repository.apache.org/content/repositories/releases)
	at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:444)
	at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts(DefaultArtifactResolver.java:246)
	at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveDependencies(DefaultRepositorySystem.java:367)
	at org.apache.maven.plugin.internal.DefaultPluginDependenciesResolver.resolveInternal(DefaultPluginDependenciesResolver.java:210)
	... 26 more
Caused by: org.eclipse.aether.transfer.ArtifactNotFoundException: Could not find artifact com.adobe:fontkit:jar:1.0 in apache-plugins-release (https://repository.apache.org/content/repositories/releases)
	at org.eclipse.aether.connector.basic.ArtifactTransportListener.transferFailed(ArtifactTransportListener.java:39)
	at org.eclipse.aether.connector.basic.BasicRepositoryConnector$TaskRunner.run(BasicRepositoryConnector.java:355)
	at org.eclipse.aether.util.concurrency.RunnableErrorForwarder$1.run(RunnableErrorForwarder.java:67)
	at org.eclipse.aether.connector.basic.BasicRepositoryConnector$DirectExecutor.execute(BasicRepositoryConnector.java:581)
	at org.eclipse.aether.connector.basic.BasicRepositoryConnector.get(BasicRepositoryConnector.java:249)
	at org.eclipse.aether.internal.impl.DefaultArtifactResolver.performDownloads(DefaultArtifactResolver.java:520)
	at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:421)
	... 29 more
[ERROR] 
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginResolutionException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <goals> -rf :Fonts



I have try to remove com.adobe:fontkit from my local repository: ~/.m2/repository

I have try to download the .jar from here (pom not found):
https://mvnrepository.com/artifact/com.adobe/fontkit/1.0

but now I have another error:
[WARNING] Failed to notify spy org.apache.flex.utilities.converter.mavenextension.FlexEventSpy: Caught exception while downloading and converting artifact.
Downloading: https://repository.apache.org/content/repositories/releases/com/adobe/fontkit/1.0/fontkit-1.0.pom
[WARNING] The POM for com.adobe:fontkit:jar:1.0 is missing, no dependency information available
yAdobe Font SWF Conversion Utility
Copyright (c) 2009 Adobe Systems, Inc. All rights reserved.

Reading font from file:////home/flex/FlexJS/FlexJS_maven/flex-asjs/frameworks/fontsrc/target/downloads/Flat-UI-2.2.2/fonts/glyphicons/flat-ui-icons-regular.ttf
[WARNING] 
java.lang.reflect.InvocationTargetException
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:294)
	at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.NoClassDefFoundError: com/adobe/fontengine/font/FontException
	at com.adobe.fonts.transcoder.DefineFont4Transcoder.createDefineFont(Unknown Source)
	at com.adobe.fonts.transcoder.AbstractFontTranscoder.transcode(Unknown Source)
	at com.adobe.fonts.transcoder.Font2SWF.main(Unknown Source)
	... 6 more
Caused by: java.lang.ClassNotFoundException: com.adobe.fontengine.font.FontException
	at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
	... 9 more

I think there is an error on the settings-template.xml: the repository is not correct.

Thanks
Davide

-----
Apache Flex PMC
piotrzarzycki21@gmail.com
--
View this message in context: http://apache-flex-users.2333346.n4.nabble.com/FlexJs-Error-Access-of-possibly-undefined-property-JSON-tp15016p15035.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: [FlexJs]: Error: Access of possibly undefined property JSON

Posted by piotrz <pi...@gmail.com>.
Davide,

Failing tests are for sure not good, but in order to move forward try to
skip them using:

-DskipTests 

Let me know how it goes.

Piotr



-----
Apache Flex PMC
piotrzarzycki21@gmail.com
--
View this message in context: http://apache-flex-users.2333346.n4.nabble.com/FlexJs-Error-Access-of-possibly-undefined-property-JSON-tp15016p15035.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: [FlexJs]: Error: Access of possibly undefined property JSON

Posted by da...@lispa.it.
Hi Piotrz,

piotrz ha scritto:

> There are two way of building flexjs framework: Maven[1] or Ant. I can help
> with Maven related build

Ok, I try Maven


I start all in a new directory.

I have write some NOTEs with thing that I think it is better to insert into the guide.

What I have done for now is:

1) I have downloaded/extracted fleshdebugger for Linux
https://fpdownload.macromedia.com/pub/flashplayer/updaters/25/flash_player_sa_linux_debug.x86_64.tar.gz

2) I have downloaded/extracted jdk1.8.0_121

3) maven was already installed on my Debian box

4) I have created a env.sh file:

---8<---8<---8<---8<---8<---8<---8<---8<---8<
#!/bin/bash

export JAVA_HOME=/home/flex/java/jdk1.8.0_121
export MAVEN_HOME=/usr/share/maven
export FLASHPLAYER_DEBUGGER=/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger
---8<---8<---8<---8<---8<---8<---8<---8<---8<

and executed it in the shell I use to run all command:
$ . ~/env.sh

NOTE: I think it is better to insert the set of the JAVA_HOME into the guide
NOTE: if you have a proxy with a password you must set the proxy configuration for Maven
      https://maven.apache.org/guides/mini/guide-proxies.html
      I have set it in the global settings.xml (/etc/maven/settings.xml)
      Setting it for the the local user don't work...

5) flex-falcon
git clone https://git-wip-us.apache.org/repos/asf/flex-falcon.git flex-falcon
cd flex-falcon
git checkout develop
mvn -s settings-template.xml clean install

I have got error on test. I copy&paste below the log I can see in my shell and two file output.

Ciao
Davide

compiler/target/surefire-temp/MXMLVectorTagTests6678756087582125039.swf]
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLVectorTagTests8783893186575730347.mxml 

1312 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLVectorTagTests8783893186575730347.swf in 0,478 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLVectorTagTests8783893186575730347.swf]
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLVectorTagTests4578647946335853168.mxml 

1359 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLVectorTagTests4578647946335853168.swf in 0,449 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLVectorTagTests4578647946335853168.swf]
Tests run: 7, Failures: 2, Errors: 0, Skipped: 3, Time elapsed: 4.134 sec <<< FAILURE! - in mxml.tags.MXMLVectorTagTests
MXMLVectorTag_instanceElements(mxml.tags.MXMLVectorTagTests)  Time elapsed: 1.013 sec  <<< FAILURE!
java.lang.AssertionError: 
Expected: is <0>
     got: <1>

	at org.junit.Assert.assertThat(Assert.java:780)
	at org.junit.Assert.assertThat(Assert.java:738)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:148)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:153)
	at mxml.tags.MXMLVectorTagTests.MXMLVectorTag_instanceElements(MXMLVectorTagTests.java:206)

MXMLVectorTag_arrayElements(mxml.tags.MXMLVectorTagTests)  Time elapsed: 1.11 sec  <<< FAILURE!
java.lang.AssertionError: 
Expected: is <0>
     got: <1>

	at org.junit.Assert.assertThat(Assert.java:780)
	at org.junit.Assert.assertThat(Assert.java:738)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:148)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:153)
	at mxml.tags.MXMLVectorTagTests.MXMLVectorTag_arrayElements(MXMLVectorTagTests.java:133)

Running mxml.tags.MXMLWebServiceTagTests
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path=/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/framework-4.15.0.swc,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/framework-4.15.0-en_US.rb.swc,/home/flex/.m2/repository/org/apache/flex/framework/rpc/4.15.0/rpc-4.15.0.swc,/home/flex/.m2/repository/org/apache/flex/framework/rpc/4.15.0/rpc-4.15.0-en_US.rb.swc -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLWebServiceTagTests1125743758650637474.mxml 

181924 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLWebServiceTagTests1125743758650637474.swf in 3,522 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLWebServiceTagTests1125743758650637474.swf]
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.427 sec - in mxml.tags.MXMLWebServiceTagTests
Running mxml.tags.MXMLIntTagTests
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLIntTagTests3797242777078267694.mxml 

1016 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLIntTagTests3797242777078267694.swf in 0,541 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLIntTagTests3797242777078267694.swf]
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.267 sec - in mxml.tags.MXMLIntTagTests
Running mxml.tags.MXMLClassTagTests
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLClassTagTests1638767093698947080.mxml 

919 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLClassTagTests1638767093698947080.swf in 0,408 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLClassTagTests1638767093698947080.swf]
Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 1.176 sec <<< FAILURE! - in mxml.tags.MXMLClassTagTests
MXMLClassTag_basic(mxml.tags.MXMLClassTagTests)  Time elapsed: 1.176 sec  <<< FAILURE!
java.lang.AssertionError: 
Expected: is <0>
     got: <1>

	at org.junit.Assert.assertThat(Assert.java:780)
	at org.junit.Assert.assertThat(Assert.java:738)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:148)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:153)
	at mxml.tags.MXMLClassTagTests.MXMLClassTag_basic(MXMLClassTagTests.java:43)

Running mxml.tags.MXMLBooleanTagTests
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLBooleanTagTests2271888248033470551.mxml 

963 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLBooleanTagTests2271888248033470551.swf in 0,650 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLBooleanTagTests2271888248033470551.swf]
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.41 sec - in mxml.tags.MXMLBooleanTagTests
Running mxml.tags.MXMLHTTPServiceTagTests
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path=/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/framework-4.15.0.swc,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/framework-4.15.0-en_US.rb.swc,/home/flex/.m2/repository/org/apache/flex/framework/rpc/4.15.0/rpc-4.15.0.swc,/home/flex/.m2/repository/org/apache/flex/framework/rpc/4.15.0/rpc-4.15.0-en_US.rb.swc -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLHTTPServiceTagTests6946098357578906134.mxml 

133255 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLHTTPServiceTagTests6946098357578906134.swf in 2,088 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLHTTPServiceTagTests6946098357578906134.swf]
Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 5.835 sec <<< FAILURE! - in mxml.tags.MXMLHTTPServiceTagTests
MXMLHTTPServiceTag_withRequest(mxml.tags.MXMLHTTPServiceTagTests)  Time elapsed: 5.835 sec  <<< FAILURE!
java.lang.AssertionError: 
Expected: is <0>
     got: <1>

	at org.junit.Assert.assertThat(Assert.java:780)
	at org.junit.Assert.assertThat(Assert.java:738)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:148)
	at mxml.tags.MXMLHTTPServiceTagTests.MXMLHTTPServiceTag_withRequest(MXMLHTTPServiceTagTests.java:74)

Running mxml.tags.MXMLUintTagTests
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLUintTagTests1027792897424425881.mxml 

977 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLUintTagTests1027792897424425881.swf in 0,456 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLUintTagTests1027792897424425881.swf]
Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 1.659 sec <<< FAILURE! - in mxml.tags.MXMLUintTagTests
MXMLUintTag_basic(mxml.tags.MXMLUintTagTests)  Time elapsed: 1.659 sec  <<< FAILURE!
java.lang.AssertionError: 
Expected: is <0>
     got: <1>

	at org.junit.Assert.assertThat(Assert.java:780)
	at org.junit.Assert.assertThat(Assert.java:738)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:148)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:153)
	at mxml.tags.MXMLUintTagTests.MXMLUintTag_basic(MXMLUintTagTests.java:45)

Running mxml.tags.MXMLDefinitionTagTests
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLDefinitionTagTests7428196446478762616.mxml 

978 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLDefinitionTagTests7428196446478762616.swf in 0,446 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLDefinitionTagTests7428196446478762616.swf]
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.029 sec - in mxml.tags.MXMLDefinitionTagTests
Running mxml.tags.MXMLNumberTagTests
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLNumberTagTests5344994850433025529.mxml 

927 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLNumberTagTests5344994850433025529.swf in 0,433 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLNumberTagTests5344994850433025529.swf]
Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 1.143 sec <<< FAILURE! - in mxml.tags.MXMLNumberTagTests
MXMLNumberTag_basic(mxml.tags.MXMLNumberTagTests)  Time elapsed: 1.143 sec  <<< FAILURE!
java.lang.AssertionError: 
Expected: is <0>
     got: <1>

	at org.junit.Assert.assertThat(Assert.java:780)
	at org.junit.Assert.assertThat(Assert.java:738)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:148)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:153)
	at mxml.tags.MXMLNumberTagTests.MXMLNumberTag_basic(MXMLNumberTagTests.java:43)

Running mxml.tags.MXMLArrayTagTests
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLArrayTagTests2374079874472339764.mxml 

935 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLArrayTagTests2374079874472339764.swf in 0,542 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLArrayTagTests2374079874472339764.swf]
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLArrayTagTests6757020892487957735.mxml 

1384 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLArrayTagTests6757020892487957735.swf in 0,460 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLArrayTagTests6757020892487957735.swf]
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLArrayTagTests8647253252293110771.mxml 

1325 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLArrayTagTests8647253252293110771.swf in 0,364 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLArrayTagTests8647253252293110771.swf]
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLArrayTagTests334476493144490373.mxml 

1360 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLArrayTagTests334476493144490373.swf in 0,440 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLArrayTagTests334476493144490373.swf]
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLArrayTagTests899168924658769045.mxml 

1304 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLArrayTagTests899168924658769045.swf in 0,587 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLArrayTagTests899168924658769045.swf]
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLArrayTagTests8791116359580506532.mxml 

1275 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLArrayTagTests8791116359580506532.swf in 0,427 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLArrayTagTests8791116359580506532.swf]
Tests run: 6, Failures: 2, Errors: 0, Skipped: 0, Time elapsed: 6.673 sec <<< FAILURE! - in mxml.tags.MXMLArrayTagTests
MXMLArrayTag_vectorElements(mxml.tags.MXMLArrayTagTests)  Time elapsed: 1.026 sec  <<< FAILURE!
java.lang.AssertionError: 
Expected: is <0>
     got: <1>

	at org.junit.Assert.assertThat(Assert.java:780)
	at org.junit.Assert.assertThat(Assert.java:738)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:148)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:153)
	at mxml.tags.MXMLArrayTagTests.MXMLArrayTag_vectorElements(MXMLArrayTagTests.java:132)

MXMLArrayTag_objectElements(mxml.tags.MXMLArrayTagTests)  Time elapsed: 1.097 sec  <<< FAILURE!
java.lang.AssertionError: 
Expected: is <0>
     got: <1>

	at org.junit.Assert.assertThat(Assert.java:780)
	at org.junit.Assert.assertThat(Assert.java:738)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:148)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:153)
	at mxml.tags.MXMLArrayTagTests.MXMLArrayTag_objectElements(MXMLArrayTagTests.java:154)

Running mxml.tags.MXMLXMLTagTests
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLXMLTagTests7826063640205157398.mxml 

914 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLXMLTagTests7826063640205157398.swf in 0,394 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLXMLTagTests7826063640205157398.swf]
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLXMLTagTests3010804138713941444.mxml 

946 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLXMLTagTests3010804138713941444.swf in 0,446 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLXMLTagTests3010804138713941444.swf]
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLXMLTagTests3507713514702099375.mxml 

1256 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLXMLTagTests3507713514702099375.swf in 0,509 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLXMLTagTests3507713514702099375.swf]
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLXMLTagTests3709793500737891052.mxml 

1288 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLXMLTagTests3709793500737891052.swf in 0,527 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLXMLTagTests3709793500737891052.swf]
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLXMLTagTests6059517311333970994.mxml 

1286 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLXMLTagTests6059517311333970994.swf in 0,439 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLXMLTagTests6059517311333970994.swf]
Tests run: 6, Failures: 2, Errors: 0, Skipped: 1, Time elapsed: 5.524 sec <<< FAILURE! - in mxml.tags.MXMLXMLTagTests
MXMLXMLTag_formatE4X_empty(mxml.tags.MXMLXMLTagTests)  Time elapsed: 1.043 sec  <<< FAILURE!
java.lang.AssertionError: 
Expected: is <0>
     got: <1>

	at org.junit.Assert.assertThat(Assert.java:780)
	at org.junit.Assert.assertThat(Assert.java:738)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:148)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:153)
	at mxml.tags.MXMLXMLTagTests.MXMLXMLTag_formatE4X_empty(MXMLXMLTagTests.java:64)

MXMLXMLTag_formatE4X_emptyRootTag(mxml.tags.MXMLXMLTagTests)  Time elapsed: 1.194 sec  <<< FAILURE!
java.lang.AssertionError: 
Expected: is <0>
     got: <1>

	at org.junit.Assert.assertThat(Assert.java:780)
	at org.junit.Assert.assertThat(Assert.java:738)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:148)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:153)
	at mxml.tags.MXMLXMLTagTests.MXMLXMLTag_formatE4X_emptyRootTag(MXMLXMLTagTests.java:81)

Running mxml.tags.MXMLRemoteObjectTagTests
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path=/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/framework-4.15.0.swc,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/framework-4.15.0-en_US.rb.swc,/home/flex/.m2/repository/org/apache/flex/framework/rpc/4.15.0/rpc-4.15.0.swc,/home/flex/.m2/repository/org/apache/flex/framework/rpc/4.15.0/rpc-4.15.0-en_US.rb.swc -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLRemoteObjectTagTests5047090539992815132.mxml 

128539 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLRemoteObjectTagTests5047090539992815132.swf in 1,845 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLRemoteObjectTagTests5047090539992815132.swf]
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.539 sec - in mxml.tags.MXMLRemoteObjectTagTests
Running mxml.tags.MXMLInstanceTagTests
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLInstanceTagTests8332344965012738127.mxml 

921 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLInstanceTagTests8332344965012738127.swf in 0,393 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLInstanceTagTests8332344965012738127.swf]
Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.994 sec <<< FAILURE! - in mxml.tags.MXMLInstanceTagTests
MXMLInstanceTag_basic(mxml.tags.MXMLInstanceTagTests)  Time elapsed: 0.994 sec  <<< FAILURE!
java.lang.AssertionError: 
Expected: is <0>
     got: <1>

	at org.junit.Assert.assertThat(Assert.java:780)
	at org.junit.Assert.assertThat(Assert.java:738)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:148)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:153)
	at mxml.tags.MXMLInstanceTagTests.MXMLInstanceTag_basic(MXMLInstanceTagTests.java:43)

Running mxml.tags.MXMLModelTagTests
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path=/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/framework-4.15.0.swc,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/framework-4.15.0-en_US.rb.swc -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLModelTagTests8251808850470779807.mxml 

15405 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLModelTagTests8251808850470779807.swf in 0,750 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLModelTagTests8251808850470779807.swf]
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path=/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/framework-4.15.0.swc,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/framework-4.15.0-en_US.rb.swc -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLModelTagTests4042016004703266545.mxml 

15404 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLModelTagTests4042016004703266545.swf in 0,772 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLModelTagTests4042016004703266545.swf]
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path=/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/framework-4.15.0.swc,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/framework-4.15.0-en_US.rb.swc -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLModelTagTests5684997131301733231.mxml 

15647 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLModelTagTests5684997131301733231.swf in 0,769 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLModelTagTests5684997131301733231.swf]
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path=/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/framework-4.15.0.swc,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/framework-4.15.0-en_US.rb.swc -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLModelTagTests2000371927876866233.mxml 

15663 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLModelTagTests2000371927876866233.swf in 0,948 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLModelTagTests2000371927876866233.swf]
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path=/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/framework-4.15.0.swc,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/framework-4.15.0-en_US.rb.swc -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLModelTagTests1165703923614301534.mxml 

15689 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLModelTagTests1165703923614301534.swf in 0,864 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLModelTagTests1165703923614301534.swf]
Tests run: 5, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 7.618 sec <<< FAILURE! - in mxml.tags.MXMLModelTagTests
MXMLModelTag_emptyRoot(mxml.tags.MXMLModelTagTests)  Time elapsed: 1.587 sec  <<< FAILURE!
java.lang.AssertionError: 
Expected: is <0>
     got: <1>

	at org.junit.Assert.assertThat(Assert.java:780)
	at org.junit.Assert.assertThat(Assert.java:738)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:148)
	at mxml.tags.MXMLModelTagTests.MXMLModelTag_emptyRoot(MXMLModelTagTests.java:81)

Running mxml.tags.MXMLMetadataTagTests
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml -keep-as3-metadata=AAA /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLMetadataTagTests8453297495287999848.mxml 

1249 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLMetadataTagTests8453297495287999848.swf in 0,729 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLMetadataTagTests8453297495287999848.swf]
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml -keep-as3-metadata=AAA,BBB /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLMetadataTagTests7733125313577419622.mxml 

1278 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLMetadataTagTests7733125313577419622.swf in 0,523 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLMetadataTagTests7733125313577419622.swf]
Tests run: 2, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 2.375 sec <<< FAILURE! - in mxml.tags.MXMLMetadataTagTests
MXMLMetadataTag_twoTags(mxml.tags.MXMLMetadataTagTests)  Time elapsed: 1.061 sec  <<< FAILURE!
java.lang.AssertionError: 
Expected: is <0>
     got: <1>

	at org.junit.Assert.assertThat(Assert.java:780)
	at org.junit.Assert.assertThat(Assert.java:738)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:148)
	at mxml.tags.MXMLMetadataTagTests.MXMLMetadataTag_twoTags(MXMLMetadataTagTests.java:137)

Running mxml.tags.MXMLStringTagTests
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path= -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLStringTagTests2226302765678709650.mxml 

921 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLStringTagTests2226302765678709650.swf in 0,467 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLStringTagTests2226302765678709650.swf]
Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 1.22 sec <<< FAILURE! - in mxml.tags.MXMLStringTagTests
MXMLStringTag_basic(mxml.tags.MXMLStringTagTests)  Time elapsed: 1.22 sec  <<< FAILURE!
java.lang.AssertionError: 
Expected: is <0>
     got: <1>

	at org.junit.Assert.assertThat(Assert.java:780)
	at org.junit.Assert.assertThat(Assert.java:738)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:148)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:153)
	at mxml.tags.MXMLStringTagTests.MXMLStringTag_basic(MXMLStringTagTests.java:43)

Running mxml.tags.MXMLComponentTagTests
Generating test:
Compiling test:
-locale=en_US -external-library-path=/home/flex/.m2/repository/com/adobe/flash/framework/playerglobal/20.0/playerglobal-20.0.swc -library-path=/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/framework-4.15.0.swc,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/framework-4.15.0-en_US.rb.swc -namespace=http://ns.adobe.com/mxml/2009,/home/flex/.m2/repository/org/apache/flex/framework/framework/4.15.0/configs_zip/mxml-2009-manifest.xml /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLComponentTagTests6969035644507790775.mxml 

2232 bytes written to /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLComponentTagTests6969035644507790775.swf in 0,783 seconds
Executing test:
[/home/flex/FlexJS_maven/librerie/flash_player_sa_linux_debug.x86_64/flashplayerdebugger, /home/flex/FlexJS_maven/flex-falcon/compiler/target/surefire-temp/MXMLComponentTagTests6969035644507790775.swf]
Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 1.355 sec <<< FAILURE! - in mxml.tags.MXMLComponentTagTests
MXMLComponentTag_basic(mxml.tags.MXMLComponentTagTests)  Time elapsed: 1.355 sec  <<< FAILURE!
java.lang.AssertionError: 
Expected: is <0>
     got: <1>

	at org.junit.Assert.assertThat(Assert.java:780)
	at org.junit.Assert.assertThat(Assert.java:738)
	at mxml.tags.MXMLFeatureTestsBase.compileAndRun(MXMLFeatureTestsBase.java:148)
	at mxml.tags.MXMLComponentTagTests.MXMLComponentTag_basic(MXMLComponentTagTests.java:72)


Results :

Failed tests: 
  ASInheritanceTests.InterfaceOverrideOK:142->ASFeatureTestsBase.compileAndRun:185->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  ASKeywordTests.ASKeyword_Default_as_method_name:113->ASFeatureTestsBase.compileAndRun:185->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  ASKeywordTests.ASKeyword_Get_as_getter_name:191->ASFeatureTestsBase.compileAndRun:185->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  ASKeywordTests.ASKeyword_Get_as_method_name:165->ASFeatureTestsBase.compileAndRun:185->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  ASKeywordTests.ASKeyword_Namespace_as_method_name:87->ASFeatureTestsBase.compileAndRun:185->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  ASKeywordTests.ASKeyword_SwitchStatement:61->ASFeatureTestsBase.compileAndRun:185->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  ASKeywordTests.ASKeyword_as_property_name:270->ASFeatureTestsBase.compileAndRun:185->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  ASKeywordTests.ASKeyword_default_as_variable_name:312->ASFeatureTestsBase.compileAndRun:185->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  ASKeywordTests.ASKeyword_for_as_method_name:139->ASFeatureTestsBase.compileAndRun:185->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  ASNamespaceTests.ASNamespace_QNameDefinition:91->ASFeatureTestsBase.compileAndRun:185->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  ASNamespaceTests.ASNamespace_custom:68->ASFeatureTestsBase.compileAndRun:185->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  ASNamespaceTests.ASNamespace_package:45->ASFeatureTestsBase.compileAndRun:185->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  ASVariableTests.ASVariableTests_AnyInitializeUndefined:106->ASFeatureTestsBase.compileAndRun:185->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  ASVariableTests.ASVariableTests_constIsClassCastFunction:162->ASFeatureTestsBase.compileAndRun:185->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  ASVariableTests.ASVariableTests_localVarSameNameAsPrivateMethod:188->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  ASVariableTests.ASVariableTests_setter:215->ASFeatureTestsBase.compileAndRun:185->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  ASVariableTests.ASVariableTests_setterBothCustomNamespace:271->ASFeatureTestsBase.compileAndRun:185->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  ASVariableTests.ASVariableTests_setterBothPrivate:242->ASFeatureTestsBase.compileAndRun:185->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  ASVariableTests.ASVariableTests_setterPrivateGetterPublicWithNamespace:325->ASFeatureTestsBase.compileAndRun:185->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  ASVariableTests.ASVariableTests_stringInitializeEmptyString:46->ASFeatureTestsBase.compileAndRun:185->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  ASVariableTests.ASVariableTests_stringInitializeNull:66->ASFeatureTestsBase.compileAndRun:185->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  ASVariableTests.ASVariableTests_stringInitializeUndefined:86->ASFeatureTestsBase.compileAndRun:185->ASFeatureTestsBase.compileAndRun:180 
Expected: is <0>
     got: <1>

  MXMLArrayTagTests.MXMLArrayTag_objectElements:154->MXMLFeatureTestsBase.compileAndRun:153->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLArrayTagTests.MXMLArrayTag_vectorElements:132->MXMLFeatureTestsBase.compileAndRun:153->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLClassTagTests.MXMLClassTag_basic:43->MXMLFeatureTestsBase.compileAndRun:153->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLComponentTagTests.MXMLComponentTag_basic:72->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLHTTPServiceTagTests.MXMLHTTPServiceTag_withRequest:74->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLInstanceTagTests.MXMLInstanceTag_basic:43->MXMLFeatureTestsBase.compileAndRun:153->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLMetadataTagTests.MXMLMetadataTag_twoTags:137->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLModelTagTests.MXMLModelTag_emptyRoot:81->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLNumberTagTests.MXMLNumberTag_basic:43->MXMLFeatureTestsBase.compileAndRun:153->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLObjectTagTests.MXMLObjectTag_arrayPropertyValue:223->MXMLFeatureTestsBase.compileAndRun:153->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLObjectTagTests.MXMLObjectTag_empty:60->MXMLFeatureTestsBase.compileAndRun:153->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLStringTagTests.MXMLStringTag_basic:43->MXMLFeatureTestsBase.compileAndRun:153->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLUintTagTests.MXMLUintTag_basic:45->MXMLFeatureTestsBase.compileAndRun:153->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLVectorTagTests.MXMLVectorTag_arrayElements:133->MXMLFeatureTestsBase.compileAndRun:153->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLVectorTagTests.MXMLVectorTag_instanceElements:206->MXMLFeatureTestsBase.compileAndRun:153->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLXMLListTagTests.MXMLXMLListTag_empty:46->MXMLFeatureTestsBase.compileAndRun:153->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLXMLListTagTests.MXMLXMLListTag_oneEmptyTag:70->MXMLFeatureTestsBase.compileAndRun:153->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLXMLListTagTests.MXMLXMLListTag_oneTagWithAttributes:125->MXMLFeatureTestsBase.compileAndRun:153->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLXMLListTagTests.MXMLXMLListTag_oneTagWithChildren:154->MXMLFeatureTestsBase.compileAndRun:153->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLXMLListTagTests.MXMLXMLListTag_twoEmptyTags:100->MXMLFeatureTestsBase.compileAndRun:153->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLXMLTagTests.MXMLXMLTag_formatE4X_empty:64->MXMLFeatureTestsBase.compileAndRun:153->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLXMLTagTests.MXMLXMLTag_formatE4X_emptyRootTag:81->MXMLFeatureTestsBase.compileAndRun:153->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyBooleanTests.MXMLPropertyBooleanTests_attribute:64->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyBooleanTests.MXMLPropertyBooleanTests_default:49->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyBooleanTests.MXMLPropertyBooleanTests_tag_tag:98->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyBooleanTests.MXMLPropertyBooleanTests_tag_text:81->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyClassTests.MXMLPropertyClassTests_attribute:64->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyClassTests.MXMLPropertyClassTests_default:49->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyClassTests.MXMLPropertyClassTests_tag_tag:98->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyClassTests.MXMLPropertyClassTests_tag_text:81->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyIntTests.MXMLPropertyIntTests_attribute:64->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyIntTests.MXMLPropertyIntTests_default:49->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyIntTests.MXMLPropertyIntTests_tag_tag:98->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyIntTests.MXMLPropertyIntTests_tag_text:81->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyNumberTests.MXMLPropertyNumberTests_attribute:64->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyNumberTests.MXMLPropertyNumberTests_default:49->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyNumberTests.MXMLPropertyNumberTests_tag_tag:98->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyNumberTests.MXMLPropertyNumberTests_tag_text:81->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyStringTests.MXMLPropertyStringTests_attribute:64->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyStringTests.MXMLPropertyStringTests_default:49->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyStringTests.MXMLPropertyStringTests_tag_tag:98->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyStringTests.MXMLPropertyStringTests_tag_text:81->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyUintTests.MXMLPropertyUintTests_attribute:64->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyUintTests.MXMLPropertyUintTests_default:49->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyUintTests.MXMLPropertyUintTests_tag_tag:98->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>

  MXMLPropertyUintTests.MXMLPropertyUintTests_tag_text:81->MXMLFeatureTestsBase.compileAndRun:148 
Expected: is <0>
     got: <1>


Tests run: 109, Failures: 68, Errors: 0, Skipped: 5

[INFO] 
[INFO] --- jacoco-maven-plugin:0.7.6.201602180812:report (post-integration-test) @ compiler ---
[INFO] Analyzed bundle 'Apache Flex - FlexJS: Compiler: Compiler' with 2138 classes
[INFO] 
[INFO] --- apache-rat-plugin:0.12:check (license-check) @ compiler ---
[INFO] Enabled default license matchers.
[INFO] Will parse SCM ignores for exclusions...
[INFO] Parsing exclusions from /home/flex/FlexJS_maven/flex-falcon/compiler/.gitignore
[INFO] Finished adding exclusions from SCM ignore files.
[INFO] 67 implicit excludes (use -debug for more details).
[INFO] Exclude: LICENSE*
[INFO] Exclude: NOTICE*
[INFO] Exclude: README*
[INFO] Exclude: RELEASE_NOTES*
[INFO] Exclude: fb.properties
[INFO] Exclude: **/.settings/**
[INFO] Exclude: **/*.iml
[INFO] Exclude: **/.idea/**
[INFO] Exclude: **/target/**
[INFO] Exclude: lib/**
[INFO] 1982 resources included (use -debug for more details)
[INFO] Rat check: Summary over all files. Unapproved: 0, unknown: 0, generated: 0, approved: 1982 licenses.
[INFO] 
[INFO] --- maven-dependency-plugin:3.0.0:analyze-only (analyze) @ compiler ---
[WARNING] Used undeclared dependencies found:
[WARNING]    org.antlr:antlr-runtime:jar:3.3:compile
[WARNING]    antlr:antlr:jar:2.7.7:compile
[WARNING] Unused declared dependencies found:
[WARNING]    de.jflex:jflex:jar:1.6.0:compile
[WARNING]    org.antlr:antlr:jar:3.3:compile
[WARNING]    net.sourceforge.jburg:jburg:jar:1.10.3:compile
[WARNING]    com.adobe.flash.framework:playerglobal:swc:20.0:test
[WARNING]    org.apache.flex.framework:framework:zip:configs:4.15.0:test
[WARNING]    org.apache.flex.flexjs.compiler:compiler-jburg-types:jar:1.0.0:compile
[WARNING]    org.apache.flex.framework:rpc:swc:4.15.0:test
[WARNING]    org.apache.flex.framework:framework:swc:4.15.0:test
[WARNING]    org.apache.flex.framework:spark:swc:4.15.0:test
[INFO] 
[INFO] --- maven-failsafe-plugin:2.18.1:verify (default) @ compiler ---
[INFO] Failsafe report directory: /home/flex/FlexJS_maven/flex-falcon/compiler/target/failsafe-reports
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO] 
[INFO] Apache Flex - FlexJS: Compiler: Parent ............. SUCCESS [06:09 min]
[INFO] Apache Flex - FlexJS: Compiler: Test Utils ......... SUCCESS [ 29.674 s]
[INFO] Apache Flex - FlexJS: Compiler: Compiler ........... FAILURE [08:23 min]
[INFO] Apache Flex - FlexJS: Compiler: Compiler-JX ........ SKIPPED
[INFO] Apache Flex - FlexJS: Compiler: Debugger ........... SKIPPED
[INFO] Apache Flex - FlexJS: Compiler: OEM Layer .......... SKIPPED
[INFO] Apache Flex - FlexJS: FlexJS Ant Tasks ............. SKIPPED
[INFO] Apache Flex - FlexJS: FlexJS Maven Plugin .......... SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 15:33 min
[INFO] Finished at: 2017-04-12T12:40:07+02:00
[INFO] Final Memory: 55M/241M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-failsafe-plugin:2.18.1:verify (default) on project compiler: There are test failures.
[ERROR] 
[ERROR] Please refer to /home/flex/FlexJS_maven/flex-falcon/compiler/target/failsafe-reports for the individual test results.
[ERROR] -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-failsafe-plugin:2.18.1:verify (default) on project compiler: There are test failures.

Please refer to /home/flex/FlexJS_maven/flex-falcon/compiler/target/failsafe-reports for the individual test results.
	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:212)
	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
	at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)
	at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)
	at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
	at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
	at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307)
	at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193)
	at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106)
	at org.apache.maven.cli.MavenCli.execute(MavenCli.java:863)
	at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:288)
	at org.apache.maven.cli.MavenCli.main(MavenCli.java:199)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
	at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
	at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
	at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
Caused by: org.apache.maven.plugin.MojoFailureException: There are test failures.

Please refer to /home/flex/FlexJS_maven/flex-falcon/compiler/target/failsafe-reports for the individual test results.
	at org.apache.maven.plugin.surefire.SurefireHelper.reportExecution(SurefireHelper.java:82)
	at org.apache.maven.plugin.failsafe.VerifyMojo.execute(VerifyMojo.java:195)
	at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:207)
	... 20 more
[ERROR] 
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <goals> -rf :compiler





$ cat /home/flex/FlexJS_maven/flex-falcon/compiler/target/failsafe-reports/failsafe-summary.xml 
<?xml version="1.0" encoding="UTF-8"?>
<failsafe-summary result="255" timeout="false">
  <completed>109</completed>
  <errors>0</errors>
  <failures>68</failures>
  <skipped>5</skipped>
  <failureMessage/>


$ cat /home/flex/FlexJS_maven/flex-falcon/compiler/target/failsafe-reports/as.ASInheritanceTests.txt
-------------------------------------------------------------------------------
Test set: as.ASInheritanceTests
-------------------------------------------------------------------------------
Tests run: 4, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 18.216 sec <<< FAILURE! - in as.ASInheritanceTests
InterfaceOverrideOK(as.ASInheritanceTests)  Time elapsed: 10.693 sec  <<< FAILURE!
java.lang.AssertionError: 
Expected: is <0>
     got: <1>

	at org.junit.Assert.assertThat(Assert.java:780)
	at org.junit.Assert.assertThat(Assert.java:738)
	at as.ASFeatureTestsBase.compileAndRun(ASFeatureTestsBase.java:180)
	at as.ASFeatureTestsBase.compileAndRun(ASFeatureTestsBase.java:185)
	at as.ASInheritanceTests.InterfaceOverrideOK(ASInheritanceTests.java:142)



Re: [FlexJs]: Error: Access of possibly undefined property JSON

Posted by piotrz <pi...@gmail.com>.
Hi Davide,

You should switch for flexjs, falcon and typedefs repositories to develop
branch.

There are two way of building flexjs framework: Maven[1] or Ant. I can help
with Maven related build, but if you choose Ant maybe some other folks will
help you. 

[1]
https://cwiki.apache.org/confluence/display/FLEX/Building+FlexJS+with+Maven

Piotr



-----
Apache Flex PMC
piotrzarzycki21@gmail.com
--
View this message in context: http://apache-flex-users.2333346.n4.nabble.com/FlexJs-Error-Access-of-possibly-undefined-property-JSON-tp15016p15033.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: [FlexJs]: Error: Access of possibly undefined property JSON

Posted by da...@lispa.it.
Hi Piotrz,

piotrz ha scritto:

> So you were able to build falcon and flexjs ? It's great! Congrat!

thanks to you.

But Now I have other problems..

I open a new thread, because this have already a wrong subject

Ciao
Davide

Re: [FlexJs]: Error: Access of possibly undefined property JSON

Posted by piotrz <pi...@gmail.com>.
Hi Davide,

So you were able to build falcon and flexjs ? It's great! Congrat!

Piotr



-----
Apache Flex PMC
piotrzarzycki21@gmail.com
--
View this message in context: http://apache-flex-users.2333346.n4.nabble.com/FlexJs-Error-Access-of-possibly-undefined-property-JSON-tp15016p15043.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.