Yeah, I'm no bash expert either.  Each character seems to have importance.
 I looked at test_changes.sh and it only has one set of [] instead of two.
 Not sure if that would make a difference or not.

   if [ -s failures.txt ] ; then



On 5/31/13 8:54 AM, "Erik de Bruin" <e...@ixsoftware.nl> wrote:

>I know little to nothing about the kung-fu of bash/sh, so I picked up
>this snippet from the interwebs (it's currently commented out in
>'jenkins.sh' on the Azure instance:
>
>if [[ -s failures.txt ]] ; then
> echo "Some tests failed: running '-failures'"
> ./mini_run.sh -failures
>else
> echo "All tests passed on first run"
>fi ;
>
>The presence of the echo-ed statements at the expected moment during
>my tests seemed to indicate that the IF statement had the desired
>functionality, but I can easily be wrong on this.
>
>EdB
>
>
>
>On Fri, May 31, 2013 at 5:43 PM, Alex Harui <aha...@adobe.com> wrote:
>> Was there really a -u?  Any idea what that was from?  In
>> mustella/test_changes.sh I have a test for a non-empty failures.txt that
>> seems to be working for me.
>>
>> If failures.txt does not exist or is empty, -failures will run all
>>tests.
>> I suppose we should fix that, but in general -failures should not be run
>> unless there is something in failures.txt.  How did you test for
>> failures.txt and could it have modified the file and left it empty?
>>
>>
>> On 5/31/13 3:28 AM, "Erik de Bruin" <e...@ixsoftware.nl> wrote:
>>
>>>Ok, the job on the Jenkins job (Window Azure) is nearly done... A
>>>single '-all' run takes around 9 hours to complete, so I've added a
>>>schedule that does 2 runs each day.
>>>
>>>I've started a '-all' run and added this list to the recipients of the
>>>failure emails. I expect there will be some in the days to come, until
>>>we get all tests to pass.
>>>
>>>I tried to build in a '-failures' run if 'failures.txt' <> empty, but
>>>wasn't able to test properly. Is '-failures' supposed to work if you
>>>run individual tests? I ran 'tests/gumbo/core/Group/viewport', which
>>>reports 10 failures, triggering the '-failures' run as expected.
>>>However, that run reports "-uThe system cannot find the file
>>>specified." and continues to do what looks like a full run... What's
>>>going on?
>>>
>>>EdB
>>>
>>>
>>>
>>>On Thu, May 30, 2013 at 9:03 AM, OmPrakash Muppirala
>>><bigosma...@gmail.com> wrote:
>>>> On Wed, May 29, 2013 at 11:57 PM, Erik de Bruin <e...@ixsoftware.nl>
>>>>wrote:
>>>>
>>>>> Wow! Thanks. This is so cool, I love teamwork :-)
>>>>>
>>>>>
>>>> Beats all other kind of work, for sure :-)
>>>>
>>>> Om
>>>>
>>>>
>>>>> EdB
>>>>>
>>>>>
>>>>>
>>>>> On Thu, May 30, 2013 at 2:53 AM, OmPrakash Muppirala
>>>>> <bigosma...@gmail.com> wrote:
>>>>> > I installed a slave on the machine by following instructions here:
>>>>>[1]
>>>>> >
>>>>> > The mustella test job is working fine now and all tests for
>>>>> > components/Label pass.
>>>>> >
>>>>> > I will log in again in a few hours unless someone else gets to it.
>>>>>Erik,
>>>>> > over to you for now :-)
>>>>> >
>>>>> > Thanks,
>>>>> > Om
>>>>> >
>>>>> > [1]
>>>>> >
>>>>>
>>>>>https://wiki.jenkins-ci.org/display/JENKINS/Step+by+step+guide+to+set+
>>>>>up
>>>>>+master+and+slave+machines
>>>>> >
>>>>> > On Wed, May 29, 2013 at 3:34 PM, OmPrakash Muppirala
>>>>> > <bigosma...@gmail.com>wrote:
>>>>> >
>>>>> >> On Wed, May 29, 2013 at 3:30 PM, Alex Harui <aha...@adobe.com>
>>>>>wrote:
>>>>> >>
>>>>> >>>
>>>>> >>>
>>>>> >>> On 5/29/13 3:24 PM, "OmPrakash Muppirala" <bigosma...@gmail.com>
>>>>> wrote:
>>>>> >>>
>>>>> >>> >On Wed, May 29, 2013 at 11:36 AM, Erik de Bruin
>>>>><e...@ixsoftware.nl>
>>>>> >>> >wrote:
>>>>> >>> >
>>>>> >>> >> My guess is that the 'anonymous' user mentioned is because I
>>>>>DIDN'T
>>>>> >>> >> enable the security on Jenkins (it only listens to localhost),
>>>>>so I
>>>>> >>> >> (ApacheFlex) am not logged in to Jenkins. But then again,
>>>>>maybe
>>>>>I'm
>>>>> >>> >> wrong. I don't know how to properly set up Jenkins with
>>>>>security, or
>>>>> >>> >> how that effort might change the outcome (as all other
>>>>>operations
>>>>> seem
>>>>> >>> >> to be allowed when I run as 'anonymous').
>>>>> >>> >>
>>>>> >>> >> Is there another way to run Mustella and have it report
>>>>>somewhere
>>>>> when
>>>>> >>> >> it's done? Maybe a batch file that runs on the Windows
>>>>>Scheduler (or
>>>>> >>> >> whatever it's called). Does anybody know how to send emails
>>>>>with
>>>>> >>> >> attachements (results.txt) or with results.txt inlined?
>>>>> >>> >>
>>>>> >>> >> EdB
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>> >I see what is happening.  On the VM, Jenkins is installed as a
>>>>>Windows
>>>>> >>> >service.  Services are not allowed to access the desktop or
>>>>>windowing
>>>>> as
>>>>> >>> >per security restrictions.  So, the flash player is invoked (you
>>>>>can
>>>>> see
>>>>> >>> >it
>>>>> >>> >in the Task Manager), but it will not be given a window to draw.
>>>>>  Which
>>>>> >>> is
>>>>> >>> >causing the timeouts.
>>>>> >>> >
>>>>> >>> >I will play around with the installation to see how I can run it
>>>>>not
>>>>> as a
>>>>> >>> >service.
>>>>> >>> I think that makes sense, but isn't Jenkins running checkintests
>>>>> >>> elsewhere?  Or just 'ant main'?
>>>>> >>>
>>>>> >>
>>>>> >>
>>>>> >> Yes, the windows slave on builds.apache.org is able to run the
>>>>> >> checkintests fine.  Obviously, they have set Jenkins up properly,
>>>>>i.e.
>>>>> not
>>>>> >> as a service.
>>>>> >>
>>>>> >> Om
>>>>> >>
>>>>> >>
>>>>> >>> >
>>>>> >>> >Thanks,
>>>>> >>> >Om
>>>>> >>> >
>>>>> >>> >
>>>>> >>> >
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>> >> On Wed, May 29, 2013 at 8:12 PM, Alex Harui <aha...@adobe.com>
>>>>> wrote:
>>>>> >>> >> >
>>>>> >>> >> >
>>>>> >>> >> > On 5/29/13 10:44 AM, "Erik de Bruin" <e...@ixsoftware.nl>
>>>>>wrote:
>>>>> >>> >> >
>>>>> >>> >> >>Watching it indeed DOESN'T show the Flash Player popping up
>>>>>at
>>>>> all,
>>>>> >>> >> >>unlike when you run from the command line.
>>>>> >>> >> > OK, not surprised.
>>>>> >>> >> >>
>>>>> >>> >> >>I don't know enough about administrating Jenkins or Windows
>>>>> Services
>>>>> >>> >> >>to say something about the privileges each of these has, or
>>>>>what
>>>>> >>> >> >>problems using them in combination might cause. If I can't
>>>>>Google
>>>>> it,
>>>>> >>> >> >>I'm basically helpless; I'm learning this as I go along.
>>>>> >>> >> > Yeah, I'm no expert in this area of privileges either.  I
>>>>>just
>>>>> >>> >>noticed at
>>>>> >>> >> > the beginning of your log that it said it was "started by
>>>>>user
>>>>> >>> >> anonymous".
>>>>> >>> >> >  I'm wondering if it set up another user (I think you're
>>>>>logging
>>>>> in
>>>>> >>> as
>>>>> >>> >> > ApacheFlex, right) and that user doesn't have privileges.
>>>>>If
>>>>>you
>>>>> >>> >> > right-click and look at the properties on the Flash Player
>>>>>EXE,
>>>>> maybe
>>>>> >>> >> > those privileges need to be changed or maybe Jenkins should
>>>>>be
>>>>> >>> >>started by
>>>>> >>> >> > the user ApacheFlex?
>>>>> >>> >> >
>>>>> >>> >> >>
>>>>> >>> >> >>EdB
>>>>> >>> >> >>
>>>>> >>> >> >>
>>>>> >>> >> >>
>>>>> >>> >> >>
>>>>> >>> >> >>
>>>>> >>> >> >>
>>>>> >>> >> >>On Wed, May 29, 2013 at 7:12 PM, Alex Harui
>>>>><aha...@adobe.com>
>>>>> >>> wrote:
>>>>> >>> >> >>> And I assume if you watch it, nothing shows up?
>>>>> >>> >> >>>
>>>>> >>> >> >>> Is it possible that Jenkins doesn't have privileges to run
>>>>>that
>>>>> >>> >> >>>executable?
>>>>> >>> >> >>>
>>>>> >>> >> >>> On 5/29/13 10:05 AM, "Erik de Bruin" <e...@ixsoftware.nl>
>>>>> wrote:
>>>>> >>> >> >>>
>>>>> >>> >> >>>>Here is the Jenkins log for the job:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>><log>
>>>>> >>> >> >>>>Started by user anonymous
>>>>> >>> >> >>>>[EnvInject] - Loading node environment variables.
>>>>> >>> >> >>>>Building in workspace C:\Program Files
>>>>> >>> >> >>>>(x86)\Jenkins\workspace\flex-sdk_mustella
>>>>> >>> >> >>>>Checkout:flex-sdk_mustella / C:\Program Files
>>>>> >>> >> >>>>(x86)\Jenkins\workspace\flex-sdk_mustella -
>>>>> >>> >> >>>>hudson.remoting.LocalChannel@9c98e8
>>>>> >>> >> >>>>Using strategy: Default
>>>>> >>> >> >>>>Last Built Revision: Revision
>>>>> >>> >>f63bebcc099a757af13f993bd5ff78ae37b3565d
>>>>> >>> >> >>>>(origin/develop)
>>>>> >>> >> >>>>Fetching changes from 1 remote Git repository
>>>>> >>> >> >>>>Fetching upstream changes from origin
>>>>> >>> >> >>>>Commencing build of Revision
>>>>> >>> >>f63bebcc099a757af13f993bd5ff78ae37b3565d
>>>>> >>> >> >>>>(origin/develop)
>>>>> >>> >> >>>>Checking out Revision
>>>>>f63bebcc099a757af13f993bd5ff78ae37b3565d
>>>>> >>> >> >>>>(origin/develop)
>>>>> >>> >> >>>>[EnvInject] - Executing scripts and injecting environment
>>>>> variables
>>>>> >>> >> >>>>after the SCM step.
>>>>> >>> >> >>>>[EnvInject] - Injecting as environment variables the
>>>>>properties
>>>>> >>> >>content
>>>>> >>> >> >>>>USER=ApacheFlex
>>>>> >>> >> >>>>HOMEDRIVE=C:
>>>>> >>> >> >>>>HOMEPATH=\Users\ApacheFlex
>>>>> >>> >> >>>>FLASHPLAYER_DEBUGGER=C:\Program Files
>>>>> >>> >> >>>>(x86)\flashplayer11_1r102_55_win_sa_debug_32bit.exe
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>[EnvInject] - Variables injected successfully.
>>>>> >>> >> >>>>[flex-sdk_mustella] $ sh -xe
>>>>> >>> >> >>>>C:\Windows\TEMP\hudson6490587706665004359.sh
>>>>> >>> >> >>>>+ cd C:/ApacheFlex/git/flex-sdk/mustella
>>>>> >>> >> >>>>+ ./jenkins.sh
>>>>> >>> >> >>>>Skipping testcase check
>>>>> >>> >> >>>>Doing a regular mini run
>>>>> >>> >> >>>>Buildfile: C:\ApacheFlex\git\flex-sdk\mustella\build.xml
>>>>> >>> >> >>>> [loadfile]
>>>>>C:\ApacheFlex\git\flex-sdk\mustella\local.properties
>>>>> >>> >> doesn't
>>>>> >>> >> >>>>exist
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>cleanswfs:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>clean:
>>>>> >>> >> >>>>     [echo] Deleting old results and files from previous
>>>>> testsuite
>>>>> >>> >> >>>>build.
>>>>> >>> >> >>>>   [delete] Deleting directory
>>>>> >>> >>C:\ApacheFlex\git\flex-sdk\mustella\tmp
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>check-fonts:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>handle_adt_jar:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>prepare:
>>>>> >>> >> >>>>     [echo] Preparing testsuite.
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>prepare:
>>>>> >>> >> >>>>     [echo] Creating build directory...
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>compile-mustella:
>>>>> >>> >> >>>>     [echo] Compiling mustella source code...
>>>>> >>> >> >>>>    [javac]
>>>>> >>> >>C:\ApacheFlex\git\flex-sdk\mustella\java\src\build.xml:79:
>>>>> >>> >> >>>>warning: 'includeantruntime' was not set, defaulting to
>>>>> >>> >> >>>>build.sysclasspath=last; set to false for repeatable
>>>>>builds
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>echo-info:
>>>>> >>> >> >>>>     [echo]     JAVA_HOME:               C:/Program Files
>>>>> >>> >> >>>>(x86)/Java/jdk1.6.0
>>>>> >>> >> >>>>     [echo]     FLASHPLAYER_DEBUGGER:    C:\Program Files
>>>>> >>> >> >>>>(x86)\flashplayer11_1r102_55_win_sa_debug_32bit.exe
>>>>> >>> >> >>>>     [echo]     sdk.dir:
>>>>> >>> >> >>>>C:\ApacheFlex\git\flex-sdk\mustella/..
>>>>> >>> >> >>>>     [echo]     mustella exclude file:
>>>>> >>> >>
>>>>>>>>>C:/ApacheFlex/git/flex-sdk/mustella/tests/ExcludeListWin.txt
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>get_date:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>get_os:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>setup_mac:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>setup_windows:
>>>>> >>> >> >>>>     [echo] doing windows setup
>>>>> >>> >> >>>>     [echo] homepath: C:\Users\ApacheFlex
>>>>> >>> >> >>>>     [echo] trace output file: 1
>>>>> >>> >> >>>>     [echo] apollo_exe: adl.exe
>>>>> >>> >> >>>>     [echo]  player is C:\Program Files
>>>>> >>> >> >>>>(x86)\flashplayer11_1r102_55_win_sa_debug_32bit.exe
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>setup_linux:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>db_time:
>>>>> >>> >> >>>>    [mkdir] Created dir:
>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tmp
>>>>> >>> >> >>>>     [echo] db_time=2013/05/29 05:35:04
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>get_mobile_data:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>device_fail:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>handle_mobile_config:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>echo-browser:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>echo-apollo:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>setup:
>>>>> >>> >> >>>>     [echo] player is C:\Program Files
>>>>> >>> >> >>>>(x86)\flashplayer11_1r102_55_win_sa_debug_32bit.exe
>>>>> >>> >> >>>>     [echo] fileset:
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>components\Label\SWFs\Label_main.mxml;components\Label\SWFs\Labe
>>>>>>>>>>>l_
>>>>>>>>>>>mai
>>>>> >>> >>>>>>n_S
>>>>> >>> >> >>>>pa
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>rk.mxml;components\Label\events\Label_events_tester.mxml;compone
>>>>>>>>>>>nt
>>>>>>>>>>>s\L
>>>>> >>> >>>>>>abe
>>>>> >>> >> >>>>l\
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>methods\Label_methods_tester.mxml;components\Label\properties\La
>>>>>>>>>>>be
>>>>>>>>>>>l_p
>>>>> >>> >>>>>>rop
>>>>> >>> >> >>>>er
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>ties_tester.mxml;components\Label\properties\Label_properties_te
>>>>>>>>>>>st
>>>>>>>>>>>er_
>>>>> >>> >>>>>>Spa
>>>>> >>> >> >>>>rk
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>.mxml;components\Label\styles\Label_styles_tester.mxml;component
>>>>>>>>>>>s\
>>>>>>>>>>>Lab
>>>>> >>> >>>>>>el\
>>>>> >>> >> >>>>st
>>>>> >>> >> >>>>yles\Label_styles_tester_Spark.mxml
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>setbuildID:
>>>>> >>> >> >>>>     [echo] Target file was:
>>>>> >>> >>
>>>>>>>>>C:/ApacheFlex/git/flex-sdk/mustella/successfulBuild.properties
>>>>> >>> >> >>>>     [echo] ${server}
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>setHostName:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>getConfigId:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>getActualRunId:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>getRunId:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>compilemustellaswc:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>realCompile:
>>>>> >>> >> >>>> [loadfile]
>>>>>C:\ApacheFlex\git\flex-sdk\mustella\local.properties
>>>>> >>> >> doesn't
>>>>> >>> >> >>>>exist
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>build_shell_set:
>>>>> >>> >> >>>>     [echo] shell_file_mxml_equivs is
>>>>>components/Label/**/*.sh
>>>>> >>> >> >>>>     [echo] mxml_equiv_shells is ${mxml_equiv_shells}
>>>>> >>> >> >>>>     [echo] tmp.sdk.mustella.scripts2 is ;;;;;
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>chmod_shells:
>>>>> >>> >> >>>>     [echo] changing user shell files to executable
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>shells:
>>>>> >>> >> >>>>     [exec] done with pre compile step
>>>>> >>> >> >>>>     [java] exclude_filename:
>>>>> >>> >>
>>>>>>>>>C:/ApacheFlex/git/flex-sdk/mustella/tests/ExcludeListWin.txt
>>>>> >>> >> >>>>     [java] os_version: ${os_version}
>>>>> >>> >> >>>>     [java] target_os_name: windows
>>>>> >>> >> >>>>     [java] device_name: ${device_name}
>>>>> >>> >> >>>>     [java] result_include: -includes=SendResultsToRunner
>>>>> >>> >> >>>>     [java] Choosing local runner bitmap save
>>>>> >>> >> >>>>     [java] Choosing local runner bitmap save
>>>>> >>> >> >>>>     [java] okey doke, going to compile
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs\
>>>>>>>>>>>La
>>>>>>>>>>>bel
>>>>> >>> >>>>>>_ma
>>>>> >>> >> >>>>in
>>>>> >>> >> >>>>_Spark.mxml
>>>>> >>> >> >>>>     [java] okey doke, going to compile
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs\
>>>>>>>>>>>La
>>>>>>>>>>>bel
>>>>> >>> >>>>>>_ma
>>>>> >>> >> >>>>in
>>>>> >>> >> >>>>.mxml
>>>>> >>> >> >>>>     [java] Loading configuration file
>>>>> >>> >> >>>>C:\ApacheFlex\git\flex-sdk\frameworks\flex-config.xml
>>>>> >>> >> >>>>     [java] Loading configuration file
>>>>> >>> >> >>>>C:\ApacheFlex\git\flex-sdk\frameworks\flex-config.xml
>>>>> >>> >> >>>>     [java]
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\event
>>>>>>>>>>>s\
>>>>>>>>>>>Lab
>>>>> >>> >>>>>>el_
>>>>> >>> >> >>>>ev
>>>>> >>> >> >>>>ents_tester.mxml(121):
>>>>> >>> >> >>>>Warning: Data binding will not be able to detect changes
>>>>>when
>>>>> using
>>>>> >>> >> >>>>square bracket operator.  For Array, please use
>>>>> >>> >> >>>>ArrayCollection.getItemAt() instead.
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java] <SetProperty target="myLabel"
>>>>>propertyName="data"
>>>>> >>> >> >>>>value="{dpData[0].label}" waitEvent="updateComplete"
>>>>> >>> >> >>>>waitTarget="myLabel"/>
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\event
>>>>>>>>>>>s\
>>>>>>>>>>>Lab
>>>>> >>> >>>>>>el_
>>>>> >>> >> >>>>ev
>>>>> >>> >> >>>>ents_tester.mxml(129):
>>>>> >>> >> >>>>Warning: Data binding will not be able to detect changes
>>>>>when
>>>>> using
>>>>> >>> >> >>>>square bracket operator.  For Array, please use
>>>>> >>> >> >>>>ArrayCollection.getItemAt() instead.
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java] <SetProperty target="myLabel"
>>>>>propertyName="data"
>>>>> >>> >> >>>>value="{dpData[1].label}" waitEvent="updateComplete"
>>>>> >>> >> >>>>waitTarget="myLabel"/>
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\event
>>>>>>>>>>>s\
>>>>>>>>>>>Lab
>>>>> >>> >>>>>>el_
>>>>> >>> >> >>>>ev
>>>>> >>> >> >>>>ents_tester.mxml(133):
>>>>> >>> >> >>>>Warning: Data binding will not be able to detect changes
>>>>>when
>>>>> using
>>>>> >>> >> >>>>square bracket operator.  For Array, please use
>>>>> >>> >> >>>>ArrayCollection.getItemAt() instead.
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java] <AssertPropertyValue target="myLabel"
>>>>> >>> >>propertyName="data"
>>>>> >>> >> >>>>value="{dpData[1].label}"/>
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\prope
>>>>>>>>>>>rt
>>>>>>>>>>>ies
>>>>> >>> >>>>>>\La
>>>>> >>> >> >>>>be
>>>>> >>> >> >>>>l_properties_tester.mxml(229):
>>>>> >>> >> >>>>Warning: Data binding will not be able to detect changes
>>>>>when
>>>>> using
>>>>> >>> >> >>>>square bracket operator.  For Array, please use
>>>>> >>> >> >>>>ArrayCollection.getItemAt() instead.
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java] <SetProperty target="myLabel"
>>>>>propertyName="data"
>>>>> >>> >> >>>>value="{dpData[0].label}" waitEvent="updateComplete"
>>>>> >>> >> >>>>waitTarget="myLabel"/>
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\prope
>>>>>>>>>>>rt
>>>>>>>>>>>ies
>>>>> >>> >>>>>>\La
>>>>> >>> >> >>>>be
>>>>> >>> >> >>>>l_properties_tester.mxml(235):
>>>>> >>> >> >>>>Warning: Data binding will not be able to detect changes
>>>>>when
>>>>> using
>>>>> >>> >> >>>>square bracket operator.  For Array, please use
>>>>> >>> >> >>>>ArrayCollection.getItemAt() instead.
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java] <AssertPropertyValue target="myLabel"
>>>>> >>> >>propertyName="data"
>>>>> >>> >> >>>>value="{dpData[0].label}"/>
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\prope
>>>>>>>>>>>rt
>>>>>>>>>>>ies
>>>>> >>> >>>>>>\La
>>>>> >>> >> >>>>be
>>>>> >>> >> >>>>l_properties_tester.mxml(253):
>>>>> >>> >> >>>>Warning: Data binding will not be able to detect changes
>>>>>when
>>>>> using
>>>>> >>> >> >>>>square bracket operator.  For Array, please use
>>>>> >>> >> >>>>ArrayCollection.getItemAt() instead.
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java] <SetProperty target="myLabel"
>>>>>propertyName="data"
>>>>> >>> >> >>>>value="{dpData[0].label}" waitEvent="updateComplete"
>>>>> >>> >> >>>>waitTarget="myLabel"/>
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\prope
>>>>>>>>>>>rt
>>>>>>>>>>>ies
>>>>> >>> >>>>>>\La
>>>>> >>> >> >>>>be
>>>>> >>> >> >>>>l_properties_tester.mxml(255):
>>>>> >>> >> >>>>Warning: Data binding will not be able to detect changes
>>>>>when
>>>>> using
>>>>> >>> >> >>>>square bracket operator.  For Array, please use
>>>>> >>> >> >>>>ArrayCollection.getItemAt() instead.
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java] <SetProperty target="myLabel"
>>>>>propertyName="data"
>>>>> >>> >> >>>>value="{dpData[1].label}" waitEvent="updateComplete"
>>>>> >>> >> >>>>waitTarget="myLabel"/>
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\prope
>>>>>>>>>>>rt
>>>>>>>>>>>ies
>>>>> >>> >>>>>>\La
>>>>> >>> >> >>>>be
>>>>> >>> >> >>>>l_properties_tester.mxml(261):
>>>>> >>> >> >>>>Warning: Data binding will not be able to detect changes
>>>>>when
>>>>> using
>>>>> >>> >> >>>>square bracket operator.  For Array, please use
>>>>> >>> >> >>>>ArrayCollection.getItemAt() instead.
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java] <AssertPropertyValue target="myLabel"
>>>>> >>> >>propertyName="data"
>>>>> >>> >> >>>>value="{dpData[1].label}"/>
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\prope
>>>>>>>>>>>rt
>>>>>>>>>>>ies
>>>>> >>> >>>>>>\La
>>>>> >>> >> >>>>be
>>>>> >>> >> >>>>l_properties_tester_Spark.mxml(204):
>>>>> >>> >> >>>>Warning: Data binding will not be able to detect changes
>>>>>when
>>>>> using
>>>>> >>> >> >>>>square bracket operator.  For Array, please use
>>>>> >>> >> >>>>ArrayCollection.getItemAt() instead.
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]                 <SetProperty target="myLabel"
>>>>> >>> >> >>>>propertyName="data" value="{dpData[0].label}"
>>>>> >>> >> >>>>waitEvent="updateComplete" waitTarget="myLabel"/>
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\prope
>>>>>>>>>>>rt
>>>>>>>>>>>ies
>>>>> >>> >>>>>>\La
>>>>> >>> >> >>>>be
>>>>> >>> >> >>>>l_properties_tester_Spark.mxml(210):
>>>>> >>> >> >>>>Warning: Data binding will not be able to detect changes
>>>>>when
>>>>> using
>>>>> >>> >> >>>>square bracket operator.  For Array, please use
>>>>> >>> >> >>>>ArrayCollection.getItemAt() instead.
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]                 <AssertPropertyValue
>>>>> target="myLabel"
>>>>> >>> >> >>>>propertyName="data" value="{dpData[0].label}"/>
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\prope
>>>>>>>>>>>rt
>>>>>>>>>>>ies
>>>>> >>> >>>>>>\La
>>>>> >>> >> >>>>be
>>>>> >>> >> >>>>l_properties_tester_Spark.mxml(228):
>>>>> >>> >> >>>>Warning: Data binding will not be able to detect changes
>>>>>when
>>>>> using
>>>>> >>> >> >>>>square bracket operator.  For Array, please use
>>>>> >>> >> >>>>ArrayCollection.getItemAt() instead.
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]                 <SetProperty target="myLabel"
>>>>> >>> >> >>>>propertyName="data" value="{dpData[0].label}"
>>>>> >>> >> >>>>waitEvent="updateComplete" waitTarget="myLabel"/>
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\prope
>>>>>>>>>>>rt
>>>>>>>>>>>ies
>>>>> >>> >>>>>>\La
>>>>> >>> >> >>>>be
>>>>> >>> >> >>>>l_properties_tester_Spark.mxml(230):
>>>>> >>> >> >>>>Warning: Data binding will not be able to detect changes
>>>>>when
>>>>> using
>>>>> >>> >> >>>>square bracket operator.  For Array, please use
>>>>> >>> >> >>>>ArrayCollection.getItemAt() instead.
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]                 <SetProperty target="myLabel"
>>>>> >>> >> >>>>propertyName="data" value="{dpData[1].label}"
>>>>> >>> >> >>>>waitEvent="updateComplete" waitTarget="myLabel"/>
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\prope
>>>>>>>>>>>rt
>>>>>>>>>>>ies
>>>>> >>> >>>>>>\La
>>>>> >>> >> >>>>be
>>>>> >>> >> >>>>l_properties_tester_Spark.mxml(236):
>>>>> >>> >> >>>>Warning: Data binding will not be able to detect changes
>>>>>when
>>>>> using
>>>>> >>> >> >>>>square bracket operator.  For Array, please use
>>>>> >>> >> >>>>ArrayCollection.getItemAt() instead.
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]                 <AssertPropertyValue
>>>>> target="myLabel"
>>>>> >>> >> >>>>propertyName="data" value="{dpData[1].label}"/>
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs\
>>>>>>>>>>>La
>>>>>>>>>>>bel
>>>>> >>> >>>>>>_ma
>>>>> >>> >> >>>>in
>>>>> >>> >> >>>>.swf
>>>>> >>> >> >>>>(1095584 bytes)
>>>>> >>> >> >>>>     [java] nothing left to do
>>>>> >>> >> >>>>     [java]
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs\
>>>>>>>>>>>La
>>>>>>>>>>>bel
>>>>> >>> >>>>>>_ma
>>>>> >>> >> >>>>in
>>>>> >>> >> >>>>_Spark.swf
>>>>> >>> >> >>>>(1731549 bytes)
>>>>> >>> >> >>>>     [java] All done with the compile
>>>>> >>> >> >>>>     [java] leaving the compile, elapsed: 16
>>>>> >>> >> >>>>     [java] ...via exit
>>>>> >>> >> >>>>     [echo] compileswfs jreturn is 0
>>>>> >>> >> >>>> [loadfile]
>>>>>C:\ApacheFlex\git\flex-sdk\mustella\local.properties
>>>>> >>> >> doesn't
>>>>> >>> >> >>>>exist
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>do_fail:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>compileswfs:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>getExcludes:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>getExcludeIds:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>populateExcludeTable:
>>>>> >>> >> >>>>     [echo] populate exclude, got this for db time:
>>>>>2013/05/29
>>>>> >>> >>05:35:04
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>justrun:
>>>>> >>> >> >>>> [loadfile]
>>>>>C:\ApacheFlex\git\flex-sdk\mustella\local.properties
>>>>> >>> >> doesn't
>>>>> >>> >> >>>>exist
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>delete_cache:
>>>>> >>> >> >>>>     [echo] delete cache:
>>>>> >>> >>/Users/ApacheFlex/Library/Caches/Adobe/Flash
>>>>> >>> >> >>>>Player/AssetCache
>>>>> >>> >> >>>> [loadfile]
>>>>>C:\ApacheFlex\git\flex-sdk\mustella\local.properties
>>>>> >>> >> doesn't
>>>>> >>> >> >>>>exist
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>delete_cache:
>>>>> >>> >> >>>>     [echo] delete cache:
>>>>> >>> >> >>>>/Users/ApacheFlex/AppData/Roaming/Adobe/Flash
>>>>>Player/AssetCache
>>>>> >>> >> >>>> [loadfile]
>>>>>C:\ApacheFlex\git\flex-sdk\mustella\local.properties
>>>>> >>> >> doesn't
>>>>> >>> >> >>>>exist
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>delete_cache:
>>>>> >>> >> >>>>     [echo] delete cache: C:\Users\ApacheFlex/Application
>>>>> >>> >> >>>>Data/Adobe/Flash Player/AssetCache
>>>>> >>> >> >>>> [loadfile]
>>>>>C:\ApacheFlex\git\flex-sdk\mustella\local.properties
>>>>> >>> >> doesn't
>>>>> >>> >> >>>>exist
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>android_runner:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>ios_runner:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>qnx_runner:
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>desktop_runner:
>>>>> >>> >> >>>>     [echo] **** Willkommen auf Runner ****
>>>>> >>> >> >>>>     [java] starting results server
>>>>> >>> >> >>>>     [java] starting baseline server
>>>>> >>> >> >>>>     [java] test script count: 2
>>>>> >>> >> >>>>     [java] new test file:
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs\
>>>>>>>>>>>La
>>>>>>>>>>>bel
>>>>> >>> >>>>>>_ma
>>>>> >>> >> >>>>in
>>>>> >>> >> >>>>.swf
>>>>> >>> >> >>>>     [java] ******** cmdArr before:
>>>>> >>> >> >>>>     [java] C:\Program Files
>>>>> >>> >> >>>>(x86)\flashplayer11_1r102_55_win_sa_debug_32bit.exe
>>>>> >>> >> >>>>     [java]
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs\
>>>>>>>>>>>La
>>>>>>>>>>>bel
>>>>> >>> >>>>>>_ma
>>>>> >>> >> >>>>in
>>>>> >>> >> >>>>.swf
>>>>> >>> >> >>>>     [java] ******** moreParameters before:
>>>>> >>> >> >>>>     [java] ******** cmdArr after:
>>>>> >>> >> >>>>     [java] C:\Program Files
>>>>> >>> >> >>>>(x86)\flashplayer11_1r102_55_win_sa_debug_32bit.exe
>>>>> >>> >> >>>>     [java]
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs\
>>>>>>>>>>>La
>>>>>>>>>>>bel
>>>>> >>> >>>>>>_ma
>>>>> >>> >> >>>>in
>>>>> >>> >> >>>>.swf
>>>>> >>> >> >>>>     [java] getting directory from the swf file
>>>>> >>> >> >>>>     [java] derived directory:
>>>>> >>> >>
>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs
>>>>> >>> >> >>>>     [java] Launching:
>>>>> >>> >> >>>>     [java]  C:\Program Files
>>>>> >>> >> >>>>(x86)\flashplayer11_1r102_55_win_sa_debug_32bit.exe
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs\
>>>>>>>>>>>La
>>>>>>>>>>>bel
>>>>> >>> >>>>>>_ma
>>>>> >>> >> >>>>in
>>>>> >>> >> >>>>.swf
>>>>> >>> >> >>>>Launching: C:\Program Files
>>>>> >>> >> >>>>(x86)\flashplayer11_1r102_55_win_sa_debug_32bit.exe
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs\
>>>>>>>>>>>La
>>>>>>>>>>>bel
>>>>> >>> >>>>>>_ma
>>>>> >>> >> >>>>in
>>>>> >>> >> >>>>.swf
>>>>> >>> >> >>>>     [java] USING directory:
>>>>> >>> >>
>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs
>>>>> >>> >> >>>>     [java] time: 05:35:22.460
>>>>> >>> >> >>>>     [java] starting the baseline server: Wed May 29
>>>>>05:35:22
>>>>> ACT
>>>>> >>> >>2013
>>>>> >>> >> >>>>     [java] Firing Meta Timeout for process start after
>>>>>12000
>>>>> >>> millis
>>>>> >>> >> >>>>at: 05:35:34.461
>>>>> >>> >> >>>>     [java] clobberProcess true
>>>>> >>> >> >>>>     [java] ClobberProcess, destroying process
>>>>> >>> >> >>>>     [java] unpacked result:
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs\
>>>>>>>>>>>La
>>>>>>>>>>>bel
>>>>> >>> >>>>>>_ma
>>>>> >>> >> >>>>in
>>>>> >>> >> >>>>.swf
>>>>> >>> >> >>>> Failed Timed out 0 Wed May 29 05:35:22 ACT 2013 0.0
>>>>> >>> >> >>>>     [java] Total Results so far: 1
>>>>> >>> >> >>>>     [java] Grab log, do parse = false
>>>>> >>> >> >>>>     [java] Grabbing the log from:
>>>>> >>> >> >>>>C:\\AppData/Roaming\Macromedia/Flash
>>>>>Player/Logs/flashlog.txt
>>>>> to:
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs\
>>>>>>>>>>>La
>>>>>>>>>>>bel
>>>>> >>> >>>>>>_ma
>>>>> >>> >> >>>>in
>>>>> >>> >> >>>>.log
>>>>> >>> >> >>>>     [java] TROUBLE on the log copy.
>>>>> >>> >> >>>>     [java] C:\AppData\Roaming\Macromedia\Flash
>>>>> >>> >> >>>>Player\Logs\flashlog.txt (The system cannot find the path
>>>>> >>> specified)
>>>>> >>> >> >>>>     [java] trouble on the cleanup (1) for the log copy.
>>>>> >>> >> >>>>     [java] trouble on the cleanup (2) for the log copy.
>>>>> >>> >> >>>>     [java] new test file:
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs\
>>>>>>>>>>>La
>>>>>>>>>>>bel
>>>>> >>> >>>>>>_ma
>>>>> >>> >> >>>>in
>>>>> >>> >> >>>>_Spark.swf
>>>>> >>> >> >>>>     [java] ******** cmdArr before:
>>>>> >>> >> >>>>     [java] C:\Program Files
>>>>> >>> >> >>>>(x86)\flashplayer11_1r102_55_win_sa_debug_32bit.exe
>>>>> >>> >> >>>>     [java]
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs\
>>>>>>>>>>>La
>>>>>>>>>>>bel
>>>>> >>> >>>>>>_ma
>>>>> >>> >> >>>>in
>>>>> >>> >> >>>>_Spark.swf
>>>>> >>> >> >>>>     [java] ******** moreParameters before:
>>>>> >>> >> >>>>     [java] ******** cmdArr after:
>>>>> >>> >> >>>>     [java] C:\Program Files
>>>>> >>> >> >>>>(x86)\flashplayer11_1r102_55_win_sa_debug_32bit.exe
>>>>> >>> >> >>>>     [java]
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs\
>>>>>>>>>>>La
>>>>>>>>>>>bel
>>>>> >>> >>>>>>_ma
>>>>> >>> >> >>>>in
>>>>> >>> >> >>>>_Spark.swf
>>>>> >>> >> >>>>     [java] getting directory from the swf file
>>>>> >>> >> >>>>     [java] derived directory:
>>>>> >>> >>
>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs
>>>>> >>> >> >>>>     [java] Launching:
>>>>> >>> >> >>>>     [java]  C:\Program Files
>>>>> >>> >> >>>>(x86)\flashplayer11_1r102_55_win_sa_debug_32bit.exe
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs\
>>>>>>>>>>>La
>>>>>>>>>>>bel
>>>>> >>> >>>>>>_ma
>>>>> >>> >> >>>>in
>>>>> >>> >> >>>>_Spark.swf
>>>>> >>> >> >>>>Launching: C:\Program Files
>>>>> >>> >> >>>>(x86)\flashplayer11_1r102_55_win_sa_debug_32bit.exe
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs\
>>>>>>>>>>>La
>>>>>>>>>>>bel
>>>>> >>> >>>>>>_ma
>>>>> >>> >> >>>>in
>>>>> >>> >> >>>>_Spark.swf
>>>>> >>> >> >>>>     [java] USING directory:
>>>>> >>> >>
>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs
>>>>> >>> >> >>>>     [java] time: 05:35:34.486
>>>>> >>> >> >>>>     [java] Firing Meta Timeout for process start after
>>>>>12000
>>>>> >>> millis
>>>>> >>> >> >>>>at: 05:35:46.491
>>>>> >>> >> >>>>     [java] clobberProcess true
>>>>> >>> >> >>>>     [java] ClobberProcess, destroying process
>>>>> >>> >> >>>>     [java] unpacked result:
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs\
>>>>>>>>>>>La
>>>>>>>>>>>bel
>>>>> >>> >>>>>>_ma
>>>>> >>> >> >>>>in
>>>>> >>> >> >>>>_Spark.swf
>>>>> >>> >> >>>> Failed Timed out 0 Wed May 29 05:35:34 ACT 2013 0.0
>>>>> >>> >> >>>>     [java] Total Results so far: 2
>>>>> >>> >> >>>>     [java] Grab log, do parse = false
>>>>> >>> >> >>>>     [java] Grabbing the log from:
>>>>> >>> >> >>>>C:\\AppData/Roaming\Macromedia/Flash
>>>>>Player/Logs/flashlog.txt
>>>>> to:
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs\
>>>>>>>>>>>La
>>>>>>>>>>>bel
>>>>> >>> >>>>>>_ma
>>>>> >>> >> >>>>in
>>>>> >>> >> >>>>_Spark.log
>>>>> >>> >> >>>>     [java] TROUBLE on the log copy.
>>>>> >>> >> >>>>     [java] C:\AppData\Roaming\Macromedia\Flash
>>>>> >>> >> >>>>Player\Logs\flashlog.txt (The system cannot find the path
>>>>> >>> specified)
>>>>> >>> >> >>>>     [java] trouble on the cleanup (1) for the log copy.
>>>>> >>> >> >>>>     [java] trouble on the cleanup (2) for the log copy.
>>>>> >>> >> >>>>     [java] at the end of main
>>>>> >>> >> >>>>     [java] Shutting down the results server
>>>>> >>> >> >>>>     [java] shutting down the baseline server
>>>>> >>> >> >>>>     [java] done waiting for results...bye
>>>>> >>> >> >>>>     [java]
>>>>> =====================================================
>>>>> >>> >> >>>>     [java]     Passes: 0
>>>>> >>> >> >>>>     [java]     Fails: 2
>>>>> >>> >> >>>>     [java]
>>>>> =====================================================
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]
>>>>> =====================================================
>>>>> >>> >> >>>>     [java]
>>>>> =====================================================
>>>>> >>> >> >>>>     [java] Passed:
>>>>> >>> >> >>>>     [java]
>>>>> =====================================================
>>>>> >>> >> >>>>     [java]
>>>>> =====================================================
>>>>> >>> >> >>>>     [java] Failed:
>>>>> >>> >> >>>>     [java]
>>>>> =====================================================
>>>>> >>> >> >>>>     [java]
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs\
>>>>>>>>>>>La
>>>>>>>>>>>bel
>>>>> >>> >>>>>>_ma
>>>>> >>> >> >>>>in
>>>>> >>> >> >>>>.swf
>>>>> >>> >> >>>> Failed Timed out
>>>>> >>> >> >>>>     [java]
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>>
>>>>>>>>>>>C:\ApacheFlex\git\flex-sdk\mustella\tests\components\Label\SWFs\
>>>>>>>>>>>La
>>>>>>>>>>>bel
>>>>> >>> >>>>>>_ma
>>>>> >>> >> >>>>in
>>>>> >>> >> >>>>_Spark.swf
>>>>> >>> >> >>>> Failed Timed out
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]
>>>>> =====================================================
>>>>> >>> >> >>>>     [java]     Passes: 0
>>>>> >>> >> >>>>     [java]     Fails: 2
>>>>> >>> >> >>>>     [java]
>>>>> =====================================================
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java]
>>>>> >>> >> >>>>     [java] Wrote summary to results.txt
>>>>> >>> >> >>>>     [java] Wrote failures to failures.txt
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>BUILD FAILED
>>>>> >>> >> >>>>C:\ApacheFlex\git\flex-sdk\mustella\build.xml:1539: The
>>>>> following
>>>>> >>> >> >>>>error occurred while executing this line:
>>>>> >>> >> >>>>C:\ApacheFlex\git\flex-sdk\mustella\build.xml:1657: Java
>>>>> returned:
>>>>> >>> 1
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>Total time: 45 seconds
>>>>> >>> >> >>>>Build step 'Execute shell' marked build as failure
>>>>> >>> >> >>>>Finished: FAILURE
>>>>> >>> >> >>>></log>
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>HTH,
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>EdB
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>On Wed, May 29, 2013 at 6:21 PM, Alex Harui
>>>>><aha...@adobe.com>
>>>>> >>> >>wrote:
>>>>> >>> >> >>>>> Any error messages or other useful console output?
>>>>> >>> >> >>>>>
>>>>> >>> >> >>>>> On 5/29/13 6:39 AM, "Erik de Bruin" <e...@ixsoftware.nl>
>>>>> wrote:
>>>>> >>> >> >>>>>
>>>>> >>> >> >>>>>>It runs fine when I mini_run from the command line, just
>>>>>not
>>>>> when
>>>>> >>> >>I
>>>>> >>> >> >>>>>>mini_run from Jenkins.
>>>>> >>> >> >>>>>>
>>>>> >>> >> >>>>>>EdB
>>>>> >>> >> >>>>>>
>>>>> >>> >> >>>>>>
>>>>> >>> >> >>>>>>
>>>>> >>> >> >>>>>>On Wed, May 29, 2013 at 3:08 PM, Alex Harui
>>>>><aha...@adobe.com
>>>>> >
>>>>> >>> >> wrote:
>>>>> >>> >> >>>>>>> Can you watch it run?  A common issue is that the OS
>>>>>shows
>>>>> the
>>>>> >>> >> "this
>>>>> >>> >> >>>>>>> program is downloaded are you sure it is ok to run"
>>>>>dialog
>>>>> >>> >>after an
>>>>> >>> >> >>>>>>>FP
>>>>> >>> >> >>>>>>> install and mini_run will timeout waiting for someone
>>>>>to hit
>>>>> >>> ok.
>>>>> >>> >> >>>>>>>
>>>>> >>> >> >>>>>>> On 5/29/13 3:55 AM, "Erik de Bruin"
>>>>><e...@ixsoftware.nl>
>>>>> >>> wrote:
>>>>> >>> >> >>>>>>>
>>>>> >>> >> >>>>>>>>Ok, I have Mustella running on Jenkins on Win2008...
>>>>>but the
>>>>> >>> >> >>>>>>>>'desktop_runner' can't seem to launch the Flash
>>>>>Player.
>>>>> >>> >> >>>>>>>>
>>>>> >>> >> >>>>>>>>Help?
>>>>> >>> >> >>>>>>>>
>>>>> >>> >> >>>>>>>>EdB
>>>>> >>> >> >>>>>>>>
>>>>> >>> >> >>>>>>>>
>>>>> >>> >> >>>>>>>>
>>>>> >>> >> >>>>>>>>On Tue, May 28, 2013 at 7:58 PM, Erik de Bruin
>>>>> >>> >><e...@ixsoftware.nl
>>>>> >>> >> >
>>>>> >>> >> >>>>>>>>wrote:
>>>>> >>> >> >>>>>>>>> On the Mac, using the MS RDP software, I just type
>>>>>the URL
>>>>> >>> >> >>>>>>>>>followed
>>>>> >>> >> >>>>>>>>>by
>>>>> >>> >> >>>>>>>>> a colon and the port... You might want to put in the
>>>>> >>> >>credentials
>>>>> >>> >> >>>>>>>>>under
>>>>> >>> >> >>>>>>>>> File -> Edit a Connection first?
>>>>> >>> >> >>>>>>>>>
>>>>> >>> >> >>>>>>>>> EdB
>>>>> >>> >> >>>>>>>>>
>>>>> >>> >> >>>>>>>>>
>>>>> >>> >> >>>>>>>>>
>>>>> >>> >> >>>>>>>>> On Tue, May 28, 2013 at 7:38 PM, Alex Harui <
>>>>> >>> aha...@adobe.com>
>>>>> >>> >> >>>>>>>>>wrote:
>>>>> >>> >> >>>>>>>>>> Might have been me trying to get in.
>>>>> >>> >> >>>>>>>>>>
>>>>> >>> >> >>>>>>>>>> However, I still have yet to make a connection.
>>>>>I've
>>>>> tried
>>>>> >>> >>both
>>>>> >>> >> >>>>>>>>>>Mac
>>>>> >>> >> >>>>>>>>>>and
>>>>> >>> >> >>>>>>>>>> Win.  Ping was able to find
>>>>>flex-mustella.cloudapp.net.
>>>>> >>>  How
>>>>> >>> >> are
>>>>> >>> >> >>>>>>>>>>you
>>>>> >>> >> >>>>>>>>>>guys
>>>>> >>> >> >>>>>>>>>> specifying the port?
>>>>> >>> >> >>>>>>>>>>
>>>>> >>> >> >>>>>>>>>> I'll wait to try again until someone says they
>>>>> successfully
>>>>> >>> >>got
>>>>> >>> >> >>>>>>>>>>in.
>>>>> >>> >> >>>>>>>>>>
>>>>> >>> >> >>>>>>>>>> -Alex
>>>>> >>> >> >>>>>>>>>>
>>>>> >>> >> >>>>>>>>>> On 5/28/13 10:22 AM, "OmPrakash Muppirala" <
>>>>> >>> >> bigosma...@gmail.com>
>>>>> >>> >> >>>>>>>>>>wrote:
>>>>> >>> >> >>>>>>>>>>
>>>>> >>> >> >>>>>>>>>>>On Mon, May 27, 2013 at 10:17 PM, Erik de Bruin
>>>>> >>> >> >>>>>>>>>>><e...@ixsoftware.nl>
>>>>> >>> >> >>>>>>>>>>>wrote:
>>>>> >>> >> >>>>>>>>>>>
>>>>> >>> >> >>>>>>>>>>>> Om,
>>>>> >>> >> >>>>>>>>>>>>
>>>>> >>> >> >>>>>>>>>>>> Thank you, I don't mind at all ;-)
>>>>> >>> >> >>>>>>>>>>>>
>>>>> >>> >> >>>>>>>>>>>> I won't have time to work on this today, so feel
>>>>>free
>>>>> to
>>>>> >>> >>give
>>>>> >>> >> >>>>>>>>>>>>it
>>>>> >>> >> >>>>>>>>>>>>a
>>>>> >>> >> >>>>>>>>>>>>try.
>>>>> >>> >> >>>>>>>>>>>>
>>>>> >>> >> >>>>>>>>>>>> EdB
>>>>> >>> >> >>>>>>>>>>>>
>>>>> >>> >> >>>>>>>>>>>>
>>>>> >>> >> >>>>>>>>>>>I tried getting in a few minutes ago.  Someone
>>>>>kicked me
>>>>> out
>>>>> >>> >>:-)
>>>>> >>> >> >>>>>>>>>>>
>>>>> >>> >> >>>>>>>>>>>Let me know when you are done?
>>>>> >>> >> >>>>>>>>>>>
>>>>> >>> >> >>>>>>>>>>>Thanks,
>>>>> >>> >> >>>>>>>>>>>Om
>>>>> >>> >> >>>>>>>>>>>
>>>>> >>> >> >>>>>>>>>>>
>>>>> >>> >> >>>>>>>>>>>>
>>>>> >>> >> >>>>>>>>>>>>
>>>>> >>> >> >>>>>>>>>>>> On Tue, May 28, 2013 at 2:53 AM, OmPrakash
>>>>>Muppirala
>>>>> >>> >> >>>>>>>>>>>> <bigosma...@gmail.com> wrote:
>>>>> >>> >> >>>>>>>>>>>> > I assumed you were sleeping and took a look.
>>>>>There
>>>>> is a
>>>>> >>> >> >>>>>>>>>>>>Mustella
>>>>> >>> >> >>>>>>>>>>>>run
>>>>> >>> >> >>>>>>>>>>>> going
>>>>> >>> >> >>>>>>>>>>>> > on and I dint want to disturb it.  I will take
>>>>>a
>>>>> look at
>>>>> >>> >>it
>>>>> >>> >> >>>>>>>>>>>>in
>>>>> >>> >> >>>>>>>>>>>>a
>>>>> >>> >> >>>>>>>>>>>>few
>>>>> >>> >> >>>>>>>>>>>> hours
>>>>> >>> >> >>>>>>>>>>>> > in case you havent fixed it by then.
>>>>> >>> >> >>>>>>>>>>>> >
>>>>> >>> >> >>>>>>>>>>>> > Thanks,
>>>>> >>> >> >>>>>>>>>>>> > Om
>>>>> >>> >> >>>>>>>>>>>> >
>>>>> >>> >> >>>>>>>>>>>> > On Mon, May 27, 2013 at 12:41 PM, OmPrakash
>>>>>Muppirala
>>>>> >>> >> >>>>>>>>>>>> > <bigosma...@gmail.com>wrote:
>>>>> >>> >> >>>>>>>>>>>> >
>>>>> >>> >> >>>>>>>>>>>> >> Do you mind if I log in to the machine and see
>>>>> what's
>>>>> >>> >> >>>>>>>>>>>>happening?
>>>>> >>> >> >>>>>>>>>>>> >>
>>>>> >>> >> >>>>>>>>>>>> >> Thanks,
>>>>> >>> >> >>>>>>>>>>>> >> Om
>>>>> >>> >> >>>>>>>>>>>> >> On May 27, 2013 9:52 AM, "Erik de Bruin"
>>>>> >>> >> >>>>>>>>>>>><e...@ixsoftware.nl>
>>>>> >>> >> >>>>>>>>>>>>wrote:
>>>>> >>> >> >>>>>>>>>>>> >>
>>>>> >>> >> >>>>>>>>>>>> >>> Hi,
>>>>> >>> >> >>>>>>>>>>>> >>>
>>>>> >>> >> >>>>>>>>>>>> >>> Does anyone have any experience getting Unix
>>>>> scripts
>>>>> >>> to
>>>>> >>> >> run
>>>>> >>> >> >>>>>>>>>>>>on
>>>>> >>> >> >>>>>>>>>>>>Win2008
>>>>> >>> >> >>>>>>>>>>>> >>> with Cygwin from a Jenkins job?
>>>>> >>> >> >>>>>>>>>>>> >>>
>>>>> >>> >> >>>>>>>>>>>> >>> I'm trying to get Mustella to run as a
>>>>>Jenkins
>>>>>job
>>>>> so
>>>>> >>> >>we
>>>>> >>> >> >>>>>>>>>>>>can
>>>>> >>> >> >>>>>>>>>>>>schedule
>>>>> >>> >> >>>>>>>>>>>> >>> it to run once or twice a day and report back
>>>>>via
>>>>> >>> >>email.
>>>>> >>> >> >>>>>>>>>>>>Seemed
>>>>> >>> >> >>>>>>>>>>>>easy
>>>>> >>> >> >>>>>>>>>>>> >>> enough, but reality turned out to be a bit
>>>>> tougher...
>>>>> >>> >> >>>>>>>>>>>> >>>
>>>>> >>> >> >>>>>>>>>>>> >>> This is how far I can get it to run, on a
>>>>>machine
>>>>> >>> >>where I
>>>>> >>> >> >>>>>>>>>>>>can
>>>>> >>> >> >>>>>>>>>>>>run
>>>>> >>> >> >>>>>>>>>>>> >>> Mustella in Cygwin successfully:
>>>>> >>> >> >>>>>>>>>>>> >>>
>>>>> >>> >> >>>>>>>>>>>> >>> <log>
>>>>> >>> >> >>>>>>>>>>>> >>> Started by user anonymous
>>>>> >>> >> >>>>>>>>>>>> >>> Building in workspace C:\Program Files
>>>>> >>> >> >>>>>>>>>>>> >>> (x86)\Jenkins\workspace\flex-sdk_mustella
>>>>> >>> >> >>>>>>>>>>>> >>> Checkout:flex-sdk_mustella / C:\Program Files
>>>>> >>> >> >>>>>>>>>>>> >>> (x86)\Jenkins\workspace\flex-sdk_mustella -
>>>>> >>> >> >>>>>>>>>>>> >>> hudson.remoting.LocalChannel@b52f79
>>>>> >>> >> >>>>>>>>>>>> >>> Using strategy: Default
>>>>> >>> >> >>>>>>>>>>>> >>> Last Built Revision: Revision
>>>>> >>> >> >>>>>>>>>>>>ae21a371ed69587c2ffba95b0b1a4b5bf10463e6
>>>>> >>> >> >>>>>>>>>>>> >>> (origin/develop)
>>>>> >>> >> >>>>>>>>>>>> >>> Fetching changes from 1 remote Git repository
>>>>> >>> >> >>>>>>>>>>>> >>> Fetching upstream changes from origin
>>>>> >>> >> >>>>>>>>>>>> >>> Commencing build of Revision
>>>>> >>> >> >>>>>>>>>>>>ae21a371ed69587c2ffba95b0b1a4b5bf10463e6
>>>>> >>> >> >>>>>>>>>>>> >>> (origin/develop)
>>>>> >>> >> >>>>>>>>>>>> >>> Checking out Revision
>>>>> >>> >> >>>>>>>>>>>>ae21a371ed69587c2ffba95b0b1a4b5bf10463e6
>>>>> >>> >> >>>>>>>>>>>> >>> (origin/develop)
>>>>> >>> >> >>>>>>>>>>>> >>> [flex-sdk_mustella] $ sh -xe
>>>>> >>> >> >>>>>>>>>>>> C:\Windows\TEMP\hudson2579720954974176906.sh
>>>>> >>> >> >>>>>>>>>>>> >>> cygwin warning:
>>>>> >>> >> >>>>>>>>>>>> >>>   MS-DOS style path detected:
>>>>> >>> >> >>>>>>>>>>>> C:\Windows\TEMP\hudson2579720954974176906.sh
>>>>> >>> >> >>>>>>>>>>>> >>>   Preferred POSIX equivalent is:
>>>>> >>> >> >>>>>>>>>>>> >>>
>>>>> /cygdrive/c/Windows/TEMP/hudson2579720954974176906.sh
>>>>> >>> >> >>>>>>>>>>>> >>>   CYGWIN environment variable option
>>>>> >>> "nodosfilewarning"
>>>>> >>> >> >>>>>>>>>>>>turns
>>>>> >>> >> >>>>>>>>>>>>off
>>>>> >>> >> >>>>>>>>>>>>this
>>>>> >>> >> >>>>>>>>>>>> >>> warning.
>>>>> >>> >> >>>>>>>>>>>> >>>   Consult the user's guide for more details
>>>>>about
>>>>> >>> POSIX
>>>>> >>> >> >>>>>>>>>>>>paths:
>>>>> >>> >> >>>>>>>>>>>> >>>
>>>>> >>> >> >>>>>>>>>>>>
>>>>> http://cygwin.com/cygwin-ug-net/using.html#using-pathnames
>>>>> >>> >> >>>>>>>>>>>> >>> + export SHELLOPTS
>>>>> >>> >> >>>>>>>>>>>> >>> + set -o igncr
>>>>> >>> >> >>>>>>>>>>>> >>> + cd C:/ApacheFlex/git/flex-sdk/mustella
>>>>> >>> >> >>>>>>>>>>>> >>> + ls -la
>>>>> >>> >> >>>>>>>>>>>> >>> total 4701
>>>>> >>> >> >>>>>>>>>>>> >>> drwx------+ 1 Administrators None       0 May
>>>>>27
>>>>> 02:21
>>>>> >>> >>.
>>>>> >>> >> >>>>>>>>>>>> >>> drwx------+ 1 Administrators None       0 May
>>>>>24
>>>>> 13:26
>>>>> >>> >>..
>>>>> >>> >> >>>>>>>>>>>> >>> -rwx------+ 1 Administrators None     169 May
>>>>>23
>>>>> 11:26
>>>>> >>> >> >>>>>>>>>>>>.gitignore
>>>>> >>> >> >>>>>>>>>>>> >>> drwx------+ 1 Administrators None       0 May
>>>>>23
>>>>> 11:22
>>>>> >>> >> >>>>>>>>>>>>Assets
>>>>> >>> >> >>>>>>>>>>>> >>> -rwx------+ 1 Administrators None    3325 May
>>>>>23
>>>>> 12:48
>>>>> >>> >> >>>>>>>>>>>> >>> MustellaResultsParser.class
>>>>> >>> >> >>>>>>>>>>>> >>> -rwx------+ 1 Administrators None    5228 May
>>>>>23
>>>>> 11:22
>>>>> >>> >> >>>>>>>>>>>> >>> MustellaResultsParser.java
>>>>> >>> >> >>>>>>>>>>>> >>> -rwx------+ 1 Administrators None    2674 May
>>>>>23
>>>>> 11:26
>>>>> >>> >> >>>>>>>>>>>>README
>>>>> >>> >> >>>>>>>>>>>> >>> drwx------+ 1 Administrators None       0 May
>>>>>23
>>>>> 11:22
>>>>> >>> >>as3
>>>>> >>> >> >>>>>>>>>>>> >>> drwxr-xr-x+ 1 ApacheFlex     None       0 May
>>>>>23
>>>>> 14:44
>>>>> >>> >> >>>>>>>>>>>>build
>>>>> >>> >> >>>>>>>>>>>> >>> -rwx------+ 1 Administrators None  124906 May
>>>>>23
>>>>> 11:26
>>>>> >>> >> >>>>>>>>>>>>build.xml
>>>>> >>> >> >>>>>>>>>>>> >>> drwx------+ 1 ApacheFlex     None       0 May
>>>>>23
>>>>> 14:45
>>>>> >>> >> >>>>>>>>>>>>classes
>>>>> >>> >> >>>>>>>>>>>> >>> -rwx------+ 1 Administrators None    2043 May
>>>>>23
>>>>> 11:22
>>>>> >>> >> >>>>>>>>>>>>clobber.awk
>>>>> >>> >> >>>>>>>>>>>> >>> -rwx------+ 1 ApacheFlex     None   13650 May
>>>>>27
>>>>> 02:21
>>>>> >>> >> >>>>>>>>>>>>failures.txt
>>>>> >>> >> >>>>>>>>>>>> >>> drwx------+ 1 Administrators None       0 May
>>>>>23
>>>>> 11:22
>>>>> >>> >> java
>>>>> >>> >> >>>>>>>>>>>> >>> -rwx------+ 1 Administrators None   12847 May
>>>>>23
>>>>> 11:26
>>>>> >>> >> >>>>>>>>>>>> >>> local-template.properties
>>>>> >>> >> >>>>>>>>>>>> >>> -rwx------+ 1 Administrators None   38032 May
>>>>>23
>>>>> 11:26
>>>>> >>> >> >>>>>>>>>>>>mini_run.sh
>>>>> >>> >> >>>>>>>>>>>> >>> -rwx------+ 1 Administrators None   88490 May
>>>>>23
>>>>> 12:48
>>>>> >>> >> >>>>>>>>>>>>mustella.swc
>>>>> >>> >> >>>>>>>>>>>> >>> drwx------+ 1 Administrators None       0 May
>>>>>27
>>>>> 15:30
>>>>> >>> >> >>>>>>>>>>>>properties
>>>>> >>> >> >>>>>>>>>>>> >>> -rwx------+ 1 ApacheFlex     None 3952987 May
>>>>>27
>>>>> 02:21
>>>>> >>> >> >>>>>>>>>>>>results.txt
>>>>> >>> >> >>>>>>>>>>>> >>> drwx------+ 1 Administrators None       0 May
>>>>>23
>>>>> 11:22
>>>>> >>> >> >>>>>>>>>>>>scripts
>>>>> >>> >> >>>>>>>>>>>> >>> -rwx------+ 1 Administrators None    1554 May
>>>>>23
>>>>> 11:26
>>>>> >>> >> >>>>>>>>>>>>test_changes.sh
>>>>> >>> >> >>>>>>>>>>>> >>> -rwx------+ 1 ApacheFlex     None  516680 May
>>>>>26
>>>>> 17:57
>>>>> >>> >> >>>>>>>>>>>>test_files.tmp
>>>>> >>> >> >>>>>>>>>>>> >>> drwx------+ 1 Administrators None       0 May
>>>>>23
>>>>> 11:26
>>>>> >>> >> >>>>>>>>>>>>tests
>>>>> >>> >> >>>>>>>>>>>> >>> drwx------+ 1 ApacheFlex     None       0 May
>>>>>26
>>>>> 17:37
>>>>> >>> >>tmp
>>>>> >>> >> >>>>>>>>>>>> >>> drwx------+ 1 Administrators None       0 May
>>>>>23
>>>>> 11:26
>>>>> >>> >> >>>>>>>>>>>>utilities
>>>>> >>> >> >>>>>>>>>>>> >>> + ./mini_run.sh tests/components/Label
>>>>> >>> >> >>>>>>>>>>>> >>> + '[' 1 -lt 1 ']'
>>>>> >>> >> >>>>>>>>>>>> >>> + '[' 'C:\Program Files
>>>>>(x86)\apache-ant-1.9.1' =
>>>>> ''
>>>>> >>> >>']'
>>>>> >>> >> >>>>>>>>>>>> >>> + propfile=properties/mustella_tmp.properties
>>>>> >>> >> >>>>>>>>>>>> >>> +
>>>>>inherit_propfile=properties/mustella1.properties
>>>>> >>> >> >>>>>>>>>>>> >>> + changes=0
>>>>> >>> >> >>>>>>>>>>>> >>> + hurricane=0
>>>>> >>> >> >>>>>>>>>>>> >>> + use_wire=true
>>>>> >>> >> >>>>>>>>>>>> >>> + propfileName=mustella_tmp
>>>>> >>> >> >>>>>>>>>>>> >>> + newFile=
>>>>> >>> >> >>>>>>>>>>>> >>> + cleanFile=
>>>>> >>> >> >>>>>>>>>>>> >>> + testName=
>>>>> >>> >> >>>>>>>>>>>> >>> + seenFile=
>>>>> >>> >> >>>>>>>>>>>> >>> + run_one_file=
>>>>> >>> >> >>>>>>>>>>>> >>> + skipcheck=1
>>>>> >>> >> >>>>>>>>>>>> >>> + skipexclude=false
>>>>> >>> >> >>>>>>>>>>>> >>> + imageDiff=0
>>>>> >>> >> >>>>>>>>>>>> >>> + sniffers=0
>>>>> >>> >> >>>>>>>>>>>> >>> + createImages=0
>>>>> >>> >> >>>>>>>>>>>> >>> + timeout=12000
>>>>> >>> >> >>>>>>>>>>>> >>> + smoke=
>>>>> >>> >> >>>>>>>>>>>> >>> + print_passes=true
>>>>> >>> >> >>>>>>>>>>>> >>> + run_all=0
>>>>> >>> >> >>>>>>>>>>>> >>> + ant_target=run
>>>>> >>> >> >>>>>>>>>>>> >>> + browser_run=
>>>>> >>> >> >>>>>>>>>>>> >>> + apollo_run=
>>>>> >>> >> >>>>>>>>>>>> >>> + exit_on_compile_error=true
>>>>> >>> >> >>>>>>>>>>>> >>> + extra_arg=
>>>>> >>> >> >>>>>>>>>>>> >>> + port=9999
>>>>> >>> >> >>>>>>>>>>>> >>> + keep=false
>>>>> >>> >> >>>>>>>>>>>> >>> + find_our_own_files=false
>>>>> >>> >> >>>>>>>>>>>> >>> + failed_only=0
>>>>> >>> >> >>>>>>>>>>>> >>> + no_run=0
>>>>> >>> >> >>>>>>>>>>>> >>> + beliteral=0
>>>>> >>> >> >>>>>>>>>>>> >>> + '[' -f local.properties ']'
>>>>> >>> >> >>>>>>>>>>>> >>> ++ uname -s
>>>>> >>> >> >>>>>>>>>>>> >>> ++ tr '[A-Z]' '[a-z]'
>>>>> >>> >> >>>>>>>>>>>> >>> + os=cygwin_nt-6.1-wow64
>>>>> >>> >> >>>>>>>>>>>> >>> ++ echo cygwin_nt-6.1-wow64
>>>>> >>> >> >>>>>>>>>>>> >>> ++ egrep cygwin
>>>>> >>> >> >>>>>>>>>>>> >>> + tmp=cygwin_nt-6.1-wow64
>>>>> >>> >> >>>>>>>>>>>> >>> + '[' cygwin_nt-6.1-wow64 = '' ']'
>>>>> >>> >> >>>>>>>>>>>> >>> + tmp=c:/tmp
>>>>> >>> >> >>>>>>>>>>>> >>> + mkdir c:/tmp
>>>>> >>> >> >>>>>>>>>>>> >>> Build step 'Execute shell' marked build as
>>>>>failure
>>>>> >>> >> >>>>>>>>>>>> >>> Finished: FAILURE
>>>>> >>> >> >>>>>>>>>>>> >>> </log>
>>>>> >>> >> >>>>>>>>>>>> >>>
>>>>> >>> >> >>>>>>>>>>>> >>> Help?
>>>>> >>> >> >>>>>>>>>>>> >>>
>>>>> >>> >> >>>>>>>>>>>> >>> EdB
>>>>> >>> >> >>>>>>>>>>>> >>>
>>>>> >>> >> >>>>>>>>>>>> >>>
>>>>> >>> >> >>>>>>>>>>>> >>>
>>>>> >>> >> >>>>>>>>>>>> >>> --
>>>>> >>> >> >>>>>>>>>>>> >>> Ix Multimedia Software
>>>>> >>> >> >>>>>>>>>>>> >>>
>>>>> >>> >> >>>>>>>>>>>> >>> Jan Luykenstraat 27
>>>>> >>> >> >>>>>>>>>>>> >>> 3521 VB Utrecht
>>>>> >>> >> >>>>>>>>>>>> >>>
>>>>> >>> >> >>>>>>>>>>>> >>> T. 06-51952295
>>>>> >>> >> >>>>>>>>>>>> >>> I. www.ixsoftware.nl
>>>>> >>> >> >>>>>>>>>>>> >>>
>>>>> >>> >> >>>>>>>>>>>> >>
>>>>> >>> >> >>>>>>>>>>>>
>>>>> >>> >> >>>>>>>>>>>>
>>>>> >>> >> >>>>>>>>>>>>
>>>>> >>> >> >>>>>>>>>>>> --
>>>>> >>> >> >>>>>>>>>>>> Ix Multimedia Software
>>>>> >>> >> >>>>>>>>>>>>
>>>>> >>> >> >>>>>>>>>>>> Jan Luykenstraat 27
>>>>> >>> >> >>>>>>>>>>>> 3521 VB Utrecht
>>>>> >>> >> >>>>>>>>>>>>
>>>>> >>> >> >>>>>>>>>>>> T. 06-51952295
>>>>> >>> >> >>>>>>>>>>>> I. www.ixsoftware.nl
>>>>> >>> >> >>>>>>>>>>>>
>>>>> >>> >> >>>>>>>>>>
>>>>> >>> >> >>>>>>>>>
>>>>> >>> >> >>>>>>>>>
>>>>> >>> >> >>>>>>>>>
>>>>> >>> >> >>>>>>>>> --
>>>>> >>> >> >>>>>>>>> Ix Multimedia Software
>>>>> >>> >> >>>>>>>>>
>>>>> >>> >> >>>>>>>>> Jan Luykenstraat 27
>>>>> >>> >> >>>>>>>>> 3521 VB Utrecht
>>>>> >>> >> >>>>>>>>>
>>>>> >>> >> >>>>>>>>> T. 06-51952295
>>>>> >>> >> >>>>>>>>> I. www.ixsoftware.nl
>>>>> >>> >> >>>>>>>>
>>>>> >>> >> >>>>>>>>
>>>>> >>> >> >>>>>>>>
>>>>> >>> >> >>>>>>>>--
>>>>> >>> >> >>>>>>>>Ix Multimedia Software
>>>>> >>> >> >>>>>>>>
>>>>> >>> >> >>>>>>>>Jan Luykenstraat 27
>>>>> >>> >> >>>>>>>>3521 VB Utrecht
>>>>> >>> >> >>>>>>>>
>>>>> >>> >> >>>>>>>>T. 06-51952295
>>>>> >>> >> >>>>>>>>I. www.ixsoftware.nl
>>>>> >>> >> >>>>>>>
>>>>> >>> >> >>>>>>
>>>>> >>> >> >>>>>>
>>>>> >>> >> >>>>>>
>>>>> >>> >> >>>>>>--
>>>>> >>> >> >>>>>>Ix Multimedia Software
>>>>> >>> >> >>>>>>
>>>>> >>> >> >>>>>>Jan Luykenstraat 27
>>>>> >>> >> >>>>>>3521 VB Utrecht
>>>>> >>> >> >>>>>>
>>>>> >>> >> >>>>>>T. 06-51952295
>>>>> >>> >> >>>>>>I. www.ixsoftware.nl
>>>>> >>> >> >>>>>
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>--
>>>>> >>> >> >>>>Ix Multimedia Software
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>Jan Luykenstraat 27
>>>>> >>> >> >>>>3521 VB Utrecht
>>>>> >>> >> >>>>
>>>>> >>> >> >>>>T. 06-51952295
>>>>> >>> >> >>>>I. www.ixsoftware.nl
>>>>> >>> >> >>>
>>>>> >>> >> >>
>>>>> >>> >> >>
>>>>> >>> >> >>
>>>>> >>> >> >>--
>>>>> >>> >> >>Ix Multimedia Software
>>>>> >>> >> >>
>>>>> >>> >> >>Jan Luykenstraat 27
>>>>> >>> >> >>3521 VB Utrecht
>>>>> >>> >> >>
>>>>> >>> >> >>T. 06-51952295
>>>>> >>> >> >>I. www.ixsoftware.nl
>>>>> >>> >> >
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>> >>
>>>>> >>> >> --
>>>>> >>> >> Ix Multimedia Software
>>>>> >>> >>
>>>>> >>> >> Jan Luykenstraat 27
>>>>> >>> >> 3521 VB Utrecht
>>>>> >>> >>
>>>>> >>> >> T. 06-51952295
>>>>> >>> >> I. www.ixsoftware.nl
>>>>> >>> >>
>>>>> >>>
>>>>> >>>
>>>>> >>
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Ix Multimedia Software
>>>>>
>>>>> Jan Luykenstraat 27
>>>>> 3521 VB Utrecht
>>>>>
>>>>> T. 06-51952295
>>>>> I. www.ixsoftware.nl
>>>>>
>>>
>>>
>>>
>>>--
>>>Ix Multimedia Software
>>>
>>>Jan Luykenstraat 27
>>>3521 VB Utrecht
>>>
>>>T. 06-51952295
>>>I. www.ixsoftware.nl
>>
>
>
>
>--
>Ix Multimedia Software
>
>Jan Luykenstraat 27
>3521 VB Utrecht
>
>T. 06-51952295
>I. www.ixsoftware.nl

Reply via email to