From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 83016 invoked by alias); 31 Jul 2015 13:55:52 -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 83006 invoked by uid 89); 31 Jul 2015 13:55:51 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00,SPF_PASS autolearn=ham version=3.3.2 X-HELO: eu-smtp-delivery-143.mimecast.com Received: from eu-smtp-delivery-143.mimecast.com (HELO eu-smtp-delivery-143.mimecast.com) (207.82.80.143) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 31 Jul 2015 13:55:50 +0000 Received: from cam-owa2.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.140]) by eu-smtp-1.mimecast.com with ESMTP id uk-mta-34-WUohLNI2SBKmR2NDjrSDwg-1; Fri, 31 Jul 2015 14:55:45 +0100 Received: from [10.2.207.50] ([10.1.2.79]) by cam-owa2.Emea.Arm.com with Microsoft SMTPSVC(6.0.3790.3959); Fri, 31 Jul 2015 14:55:44 +0100 Message-ID: <55BB7E60.1080506@arm.com> Date: Fri, 31 Jul 2015 14:20:00 -0000 From: Kyrill Tkachov User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: GCC Patches CC: ville.voutilainen@gmail.com, Jonathan Wakely Subject: FAIL: 24_iterators/container_access.cc (test for excess errors) X-MC-Unique: WUohLNI2SBKmR2NDjrSDwg-1 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2015-07/txt/msg02672.txt.bz2 Hi guys, I'm seeing this new test failing on aarch64-none-elf introduced with: commit 0d252ab36fb1a85bcaf8e48a7a49a9727d6fa90d Author: redi Date: Wed Jul 29 12:55:58 2015 +0000 * testsuite/24_iterators/container_access.cc: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@226349 138bc75d-0d04-0= 410-961f-82ee72b054a4 commit b4ae6af33f660fb9b173035a024b7b4e0253eabf Author: redi Date: Wed Jul 29 12:41:32 2015 +0000 2015-07-29 Ville Voutilainen * include/bits/range_access.h: Change class to typename in every template. (size, empty, data): New functions from N4280. * testsuite/24_iterators/container_access.cc: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@226348 138bc75d-0d04-0= 410-961f-82ee72b054a4 The excess errors are: $TOP/gcc2/aarch64-none-elf/libstdc++-v3/include/bits/range_access.h:240:34:= error: expected '>' before numeric constant $TOP/gcc2/aarch64-none-elf/libstdc++-v3/include/bits/range_access.h:258:34:= error: expected '>' before numeric constant $TOP/gcc2/aarch64-none-elf/libstdc++-v3/include/bits/range_access.h:294:34:= error: expected '>' before numeric constant /work/kyrtka01/local-checkouts/gcc/libstdc++-v3/testsuite/24_iterators/cont= ainer_access.cc:33:21: error: no matching function for call to 'data(int [4= 2])' $TOP/gcc2/aarch64-none-elf/libstdc++-v3/include/bits/range_access.h:278:5: = error: request for member 'data' in '__cont', which is of non-class type 'i= nt [42]' $TOP/gcc2/aarch64-none-elf/libstdc++-v3/include/bits/range_access.h:287:5: = error: request for member 'data' in '__cont', which is of non-class type 'c= onst int [42]' /work/kyrtka01/local-checkouts/gcc/libstdc++-v3/testsuite/24_iterators/cont= ainer_access.cc:34:21: error: no matching function for call to 'size(int [4= 2])' $TOP/gcc2/aarch64-none-elf/libstdc++-v3/include/bits/range_access.h:233:5: = error: request for member 'size' in '__cont', which is of non-class type 'c= onst int [42]' /work/kyrtka01/local-checkouts/gcc/libstdc++-v3/testsuite/24_iterators/cont= ainer_access.cc:35:23: error: no matching function for call to 'empty(int [= 42])' $TOP/gcc2/aarch64-none-elf/libstdc++-v3/include/bits/range_access.h:251:5: = error: request for member 'empty' in '__cont', which is of non-class type '= const int [42]' /work/kyrtka01/local-checkouts/gcc/libstdc++-v3/testsuite/24_iterators/cont= ainer_access.cc:42:33: error: no matching function for call to 'data(const = int [42])' $TOP/gcc2/aarch64-none-elf/libstdc++-v3/include/bits/range_access.h:278:5: = error: request for member 'data' in '__cont', which is of non-class type 'c= onst int [42]' $TOP/gcc2/aarch64-none-elf/libstdc++-v3/include/bits/range_access.h:287:5: = error: request for member 'data' in '__cont', which is of non-class type 'c= onst int [42]' /work/kyrtka01/local-checkouts/gcc/libstdc++-v3/testsuite/24_iterators/cont= ainer_access.cc:44:33: error: no matching function for call to 'size(const = int [42])' $TOP/gcc2/aarch64-none-elf/libstdc++-v3/include/bits/range_access.h:233:5: = error: request for member 'size' in '__cont', which is of non-class type 'c= onst int [42]' /work/kyrtka01/local-checkouts/gcc/libstdc++-v3/testsuite/24_iterators/cont= ainer_access.cc:46:34: error: no matching function for call to 'empty(const= int [42])' $TOP/gcc2/aarch64-none-elf/libstdc++-v3/include/bits/range_access.h:251:5: = error: request for member 'empty' in '__cont', which is of non-class type '= const int [42]'