Return-Path: X-Original-To: apmail-incubator-flex-dev-archive@minotaur.apache.org Delivered-To: apmail-incubator-flex-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0F3AE9F25 for ; Fri, 21 Dec 2012 23:13:36 +0000 (UTC) Received: (qmail 78607 invoked by uid 500); 21 Dec 2012 23:13:35 -0000 Delivered-To: apmail-incubator-flex-dev-archive@incubator.apache.org Received: (qmail 78577 invoked by uid 500); 21 Dec 2012 23:13:35 -0000 Mailing-List: contact flex-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: flex-dev@incubator.apache.org Delivered-To: mailing list flex-dev@incubator.apache.org Received: (qmail 78569 invoked by uid 99); 21 Dec 2012 23:13:35 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Dec 2012 23:13:35 +0000 X-ASF-Spam-Status: No, hits=1.5 required=5.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of jbalsas@gmail.com designates 209.85.220.178 as permitted sender) Received: from [209.85.220.178] (HELO mail-vc0-f178.google.com) (209.85.220.178) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Dec 2012 23:13:28 +0000 Received: by mail-vc0-f178.google.com with SMTP id x16so5691999vcq.37 for ; Fri, 21 Dec 2012 15:13:07 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=qjTJQyQ5OgW/2+28LGjnfOUk6Q16kpTHi9j8FZ9eEEY=; b=oEV3k+YJIiZpadMNVhA8NcqucrAzFnqWJeDVgcIvBnyL9EZF1N9C6VWkyiR5PWgld9 aNgJQYG+Lf6cWPEHDJX52kI2LzClSJfcY1h9q4uWUT2NPpWK6h44Zk2wVN/tMaWitFkh YHHwOiHyTaxfkko3o/e7sEHiyTGi72fV/OOyCdUBwso87IXwF+COmWvK3fq0W1/Mm3fB IZccuJEC4EejYPUgLPx7Vwi71QLSMyxfGwiRLHUl4BM/nf2Ah28mSh9oWNub+GWl7GSE 4ioUrrR/i6plfLlqkCtsQnAz2L+EbsULwxDwYqhddvNOg1cNY28xDzFrG2lhHWERvicS Cmig== MIME-Version: 1.0 Received: by 10.52.18.207 with SMTP id y15mr19317806vdd.8.1356131587381; Fri, 21 Dec 2012 15:13:07 -0800 (PST) Received: by 10.221.5.195 with HTTP; Fri, 21 Dec 2012 15:13:07 -0800 (PST) In-Reply-To: <149F8129B58B2D418508E63117D9C5419B5B7F2FD9@nambx05.corp.adobe.com> References: <149F8129B58B2D418508E63117D9C5419B5B7F2FD9@nambx05.corp.adobe.com> Date: Sat, 22 Dec 2012 00:13:07 +0100 Message-ID: Subject: Re: Falcon functional tests From: Chema Balsas To: flex-dev@incubator.apache.org Content-Type: multipart/alternative; boundary=bcaec504058288d9dc04d164fd3f X-Virus-Checked: Checked by ClamAV on apache.org --bcaec504058288d9dc04d164fd3f Content-Type: text/plain; charset=ISO-8859-1 Yep, I'd say this has been going since the beggining... in my case, they're getting stored as somewhere like /var/folders/x6/926_x3v952x05jkwpg4rq5400000gn/T/apache6562046723695325653.swc It seems this is the usual behavior, and is solved by invoking the deleteOnExit() method on the created temporary file. I've checked, and changing output = File.createTempFile(outputSwcName, ".swc").getAbsolutePath(); to File tmpFile = File.createTempFile(outputSwcName, ".swc"); tmpFile.deleteOnExit(); output = tmpFile.getAbsolutePath(); does remove the temporary swcs. If you're not doing anything else with the tests, I can commit this easy fix. Cheers, Chema 2012/12/21 Gordon Smith > My user directory is getting littered with files like > airframework236875180568976546.swc from the functional tests that compile > SWCs. Did somebody change the way they compile, or has this been happening > since I wrote the test infrastructure? > > - Gordon > > --bcaec504058288d9dc04d164fd3f--