From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17423 invoked by alias); 2 Jan 2008 16:48:53 -0000 Received: (qmail 17387 invoked by uid 22791); 2 Jan 2008 16:48:51 -0000 X-Spam-Status: No, hits=-3.2 required=5.0 tests=AWL,BAYES_50,RCVD_IN_DNSWL_MED,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 02 Jan 2008 16:43:01 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id m02GgkZ8006555 for ; Wed, 2 Jan 2008 11:42:46 -0500 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [10.11.255.20]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m02GgkHG004533 for ; Wed, 2 Jan 2008 11:42:46 -0500 Received: from localhost.localdomain (sebastian-int.corp.redhat.com [172.16.52.221]) by pobox.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m02Ggjt9012054 for ; Wed, 2 Jan 2008 11:42:46 -0500 Message-ID: <477BBEBC.909@redhat.com> Date: Wed, 02 Jan 2008 16:48:00 -0000 From: Andrew Cagney User-Agent: Thunderbird 2.0.0.9 (X11/20071115) MIME-Version: 1.0 To: frysk Subject: "requires 32-and-64" tests enabled when 64-bit; -arch {32,64} behavior changed Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.58 on 172.16.52.254 X-IsSubscribed: yes Mailing-List: contact frysk-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: frysk-owner@sourceware.org X-SW-Source: 2008-q1/txt/msg00000.txt.bz2 Just a heads up. The test framework as been extended to better support two 32/64 bit cases: "32-and-64": This is the case where a 64-bit funit test-case is explicitly testing interactions involving both 32-bit and 64-bit test programs. For instance, the sequence of 64-bit program execs 32-bit program execs 64-bit program. Such tests use Config.getPkgLib32File and Config.getPkgLib64File (see frysk.testbed.ExecCommand) to get 32-bit or 64-bit variants of a test program. The new guard missing32and64() is available to confirm that the test is possible (for instance, a 32-bit funit does not support and hence should skip such a test). "32-on-64": This the case where a 64-bit funit test-case is (unknowingly) being tested against a 32-bit test programs. Such tests use Config.getPkgLibFile() (which returns the applicable 32-bit or 64-bit program). The new guard unresolvedOn32On64(BUG) is available for tests that work when pure 32-on-32 and 64-on-64 but have problems when 32-on-64. In addition, funit (TestRunner) has been modified so that it defaults to running combined 32-and-64 tests (previously it skipped them); the <<-arch 32>> and <<-arch 64>> options can be used to override this. For instance, on a 64-bit system which does not have 32-bit test programs installed <> should be specified and will cause "32-and-64" tests to be skipped. Andrew