Return-Path: X-Original-To: apmail-flex-dev-archive@www.apache.org Delivered-To: apmail-flex-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 42D7A106DD for ; Thu, 10 Oct 2013 05:56:34 +0000 (UTC) Received: (qmail 3197 invoked by uid 500); 10 Oct 2013 05:56:33 -0000 Delivered-To: apmail-flex-dev-archive@flex.apache.org Received: (qmail 3171 invoked by uid 500); 10 Oct 2013 05:56:32 -0000 Mailing-List: contact dev-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list dev@flex.apache.org Received: (qmail 3158 invoked by uid 99); 10 Oct 2013 05:56:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Oct 2013 05:56:31 +0000 X-ASF-Spam-Status: No, hits=-2.3 required=5.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of aharui@adobe.com designates 64.18.1.234 as permitted sender) Received: from [64.18.1.234] (HELO exprod6og119.obsmtp.com) (64.18.1.234) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Oct 2013 05:56:23 +0000 Received: from outbound-smtp-2.corp.adobe.com ([193.104.215.16]) by exprod6ob119.postini.com ([64.18.5.12]) with SMTP ID DSNKUlZBcTW8o4bHGoymqZ62asAk9glPIBFR@postini.com; Wed, 09 Oct 2013 22:56:02 PDT Received: from inner-relay-2.corp.adobe.com (mail-321.eur.adobe.com [153.32.1.52]) by outbound-smtp-2.corp.adobe.com (8.12.10/8.12.10) with ESMTP id r9A5txQu019280 for ; Wed, 9 Oct 2013 22:56:00 -0700 (PDT) Received: from nacas03.corp.adobe.com (nacas03.corp.adobe.com [10.8.189.121]) by inner-relay-2.corp.adobe.com (8.12.10/8.12.10) with ESMTP id r9A5txOU012523 for ; Wed, 9 Oct 2013 22:55:59 -0700 (PDT) Received: from NAMBX02.corp.adobe.com ([10.8.127.96]) by nacas03.corp.adobe.com ([10.8.189.121]) with mapi; Wed, 9 Oct 2013 22:55:59 -0700 From: Alex Harui To: "dev@flex.apache.org" Date: Wed, 9 Oct 2013 22:52:38 -0700 Subject: RE: Build failed in Jenkins: flex-sdk_mustella #460 Thread-Topic: Build failed in Jenkins: flex-sdk_mustella #460 Thread-Index: Ac7FeJ8tXdEQ1bUVQ3W5R1jhK/fErwABE398 Message-ID: References: <26760942.10.1381293756614.JavaMail.FLEX-MUSTELLA$@flex-mustella> ,<5DDAB2E6-9872-494B-A949-751584860B4D@apache.org> , In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Virus-Checked: Checked by ClamAV on apache.org When I look at the diffs, I don't see the clearFlag line until Nick adds it= . The comment above the "if (!stylesheet)" makes me think the flag shouldn= 't be cleared, but I haven't really looked into it. I also took out the clearFlag call and the tests passed. =20 Right now, I'm more puzzled why Nick's revert isn't showing up. -Alex ________________________________________ From: Justin Mclean [jmclean@apache.org] Sent: Wednesday, October 09, 2013 10:21 PM To: dev@flex.apache.org Subject: Re: Build failed in Jenkins: flex-sdk_mustella #460 Hi, > What do you see that's wrong with the tests? If you look at the fix: From: if (!styleSheet) htmlText =3D null; textfield.clearFlag(FTETextField.FLAG_HTML_TEXT_SET); To: if (!styleSheet) { htmlText =3D null; textfield.clearFlag(FTETextField.FLAG_HTML_TEXT_SET); } Giving that the tests basically do the same thing, except that autoSize is = set to different values (auto or left). It not that unreasonable that corre= ctly clearing the HTML set flag could result in different results in the wi= dth calculation (given it's formatted HTML text). The test currently assume= the width is the same in each case. > Nick's revert of his change and "git log" doesn't show it either I'm not seeing the revert either - perhaps a merge issue? Thanks, Justin