Another question:

One of the other failing tests is this one:

        [Test]
        public function bindableSpan():void
        {
            // Bindable span should not lose its formatting
            var textFlow:TextFlow = new TextFlow();
            var paragraph:ParagraphElement = new ParagraphElement();
            var span1:SpanElement = new SpanElement();
            var span2:SpanElement = new SpanElement();
            var format:TextLayoutFormat = new TextLayoutFormat();
            format.fontWeight = FontWeight.BOLD;
            span2.format = format;
            paragraph.mxmlChildren = [ span1, span2 ];
            textFlow.mxmlChildren = [ paragraph ];
            textFlow.flowComposer.addController(new ContainerController(new 
Sprite()));
            textFlow.flowComposer.compose();            // force normalize
            assertTrue("Spans should not be merged!", span2.parent == 
span1.parent && paragraph.numChildren == 2);
            assertTrue("Formatting on second span should be preserved!", 
span2.fontWeight == FontWeight.BOLD);
        }

span2 is removed from the paragraph when the flow is normalized. Can anyone 
explain why empty spans should not be merged when they are normalized?

On Dec 30, 2014, at 10:54 AM, Harbs <harbs.li...@gmail.com> wrote:

> Question:
> 
> Is there a way to specify the order tests are run?
> One of the failures is in WritingModeTest. The arabicDirection test is 
> failing when all the tests are run, but passing when the WritingModeTest is 
> run by itself.
> 
> I want to see what happens if I run WritingModeTest as the first test suite.
> 
> On Dec 30, 2014, at 12:26 AM, Harbs <harbs.li...@gmail.com> wrote:
> 
>> I just made another commit. Now Down to 3. :-)
>> 
>> [flexunit] Tests run: 428, Failures: 3, Errors: 0, Skipped: 42, Time 
>> elapsed: 155.729 sec
>> 
>> On Dec 29, 2014, at 9:53 PM, Erik de Bruin <e...@ixsoftware.nl> wrote:
>> 
>>> Oh, there are plenty of Mustella tests failing ;-) But those failures
>>> don't seem to be related to TLF, as far as I can tell.
>>> 
>>> So, you're 0.5 errors and 4 failures away from "being done"!
>>> 
>>> EdB
>>> 
>>> 
>>> 
>>> On Mon, Dec 29, 2014 at 8:46 PM, Harbs <harbs.li...@gmail.com> wrote:
>>>> I thought I remembered that besides the unit test, there were mustella 
>>>> tests failing.
>>>> 
>>>> If not, all the better… ;-)
>>>> 
>>>> On Dec 29, 2014, at 9:34 PM, Erik de Bruin <e...@ixsoftware.nl> wrote:
>>>> 
>>>>> Just curious, why are you looking at Mustella tests? There don't seem
>>>>> to be Mustella tests failing in a manner that would indicate a problem
>>>>> with TLF.
>>>>> 
>>>>> EdB
>>>>> 
>>>>> 
>>>>> 
>>>>> On Mon, Dec 29, 2014 at 7:41 PM, Harbs <harbs.li...@gmail.com> wrote:
>>>>>> Is there a way to see what Mustella tests are failing on the CI server? 
>>>>>> I’d rather know what I’m dealing with before trying to run the full 
>>>>>> suite of tests on a local machine…
>>>>>> 
>>>>>> On Dec 29, 2014, at 8:08 PM, Erik de Bruin <e...@ixsoftware.nl> wrote:
>>>>>> 
>>>>>>> Just ran again with 1.8, got the error. Then with 1.6: no error. I
>>>>>>> threw in 1.7 for good measure: zero errors.
>>>>>>> 
>>>>>>> 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
>> 
> 

Reply via email to