From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29696 invoked by alias); 19 May 2017 06:27:55 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 29671 invoked by uid 89); 19 May 2017 06:27:53 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.0 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:1130 X-HELO: sasl.smtp.pobox.com Received: from pb-smtp2.pobox.com (HELO sasl.smtp.pobox.com) (64.147.108.71) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 May 2017 06:27:52 +0000 Received: from sasl.smtp.pobox.com (unknown [127.0.0.1]) by pb-smtp2.pobox.com (Postfix) with ESMTP id 28D1083B03; Fri, 19 May 2017 02:27:52 -0400 (EDT) Received: from pb-smtp2.nyi.icgroup.com (unknown [127.0.0.1]) by pb-smtp2.pobox.com (Postfix) with ESMTP id 20A2083B02; Fri, 19 May 2017 02:27:52 -0400 (EDT) Received: from [192.168.1.4] (unknown [76.215.41.237]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pb-smtp2.pobox.com (Postfix) with ESMTPSA id 4E02B83AFF; Fri, 19 May 2017 02:27:51 -0400 (EDT) From: Daniel Santos Subject: [PATCH 0/2] [testsuite] PR80759 Fix test breakages on i386-pc-solaris2.* To: Mike Stump , gcc-patches , Rainer Orth Cc: Bernd Edlinger Message-ID: <3c867dc8-7d4a-ae82-c875-d03ff6d88776@pobox.com> Date: Fri, 19 May 2017 06:29:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.5.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Pobox-Relay-ID: 48E8B966-3C5C-11E7-847B-61520C78B957-06139138!pb-smtp2.pobox.com X-IsSubscribed: yes X-SW-Source: 2017-05/txt/msg01514.txt.bz2 There are a few issues with my ms-sysv.exp tests: 1. Use of gas extensions in do_test.S cause breakages on Solaris, 2. Parallelization breaks when no make -j flag is passed, 3. Builds aren't adding TEST_ALWAYS_FLAGS, so log files filled with color escape codes, and 4. The "test unsupported" message is being spammed once for each -j https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80759 I've broken this apart into two patches because I don't know if you'll agree with the first one. I fixed the make -j issue and moved the parallelization code into a new gcc/target/lib/parallelize.exp in the first patch and fixed all of the other issues in the second. I've removed all usage of gas .struct in my assembly file, used hard-coded the offsets into the code and added asserts to main.c to make sure they don't change. I've bootstrapped and retested on x86_64 Linux and have asked Rainer to retest on Solaris. Presuming that succeeds, are you OK with this change? (I have SVN write privs now, so I can even commit it myself). Thanks, Daniel