* [PATCH] testsuite: Windows paths use \ and not /
@ 2022-10-25 15:15 Torbjörn SVENSSON
2022-11-02 18:16 ` PING^1 " Torbjorn SVENSSON
0 siblings, 1 reply; 4+ messages in thread
From: Torbjörn SVENSSON @ 2022-10-25 15:15 UTC (permalink / raw)
To: gcc-patches; +Cc: jwakely, yvan.roux, Torbjörn SVENSSON
Without this patch, the following error is reported on Windows:
In file included from t:\build\arm-none-eabi\include\c++\11.3.1\string:54,
from t:\build\arm-none-eabi\include\c++\11.3.1\bits\locale_classes.h:40,
from t:\build\arm-none-eabi\include\c++\11.3.1\bits\ios_base.h:41,
from t:\build\arm-none-eabi\include\c++\11.3.1\ios:42,
from t:\build\arm-none-eabi\include\c++\11.3.1\ostream:38,
from t:\build\arm-none-eabi\include\c++\11.3.1\iostream:39:
t:\build\arm-none-eabi\include\c++\11.3.1\bits\range_access.h:36:10: note: include 't:\build\arm-none-eabi\include\c++\11.3.1\initializer_list' translated to import
arm-none-eabi-g++.exe: warning: .../gcc/testsuite/g++.dg/modules/pr99023_b.X: linker input file unused because linking not done
FAIL: g++.dg/modules/pr99023_b.X -std=c++2a dg-regexp 6 not found: "[^\n]*: note: include '[^\n]*/initializer_list' translated to import\n"
gcc/testsuite/ChangeLog:
* g++.dg/modules/pr99023_b.X: Match Windows paths too.
Co-Authored-By: Yvan ROUX <yvan.roux@foss.st.com>
Signed-off-by: Torbjörn SVENSSON <torbjorn.svensson@foss.st.com>
---
gcc/testsuite/g++.dg/modules/pr99023_b.X | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gcc/testsuite/g++.dg/modules/pr99023_b.X b/gcc/testsuite/g++.dg/modules/pr99023_b.X
index 3d82f34868b..ca5f32e5bcc 100644
--- a/gcc/testsuite/g++.dg/modules/pr99023_b.X
+++ b/gcc/testsuite/g++.dg/modules/pr99023_b.X
@@ -3,5 +3,5 @@
// { dg-prune-output {linker input file unused} }
-// { dg-regexp {[^\n]*: note: include '[^\n]*/initializer_list' translated to import\n} }
+// { dg-regexp {[^\n]*: note: include '[^\n]*[/\\]initializer_list' translated to import\n} }
NO DO NOT COMPILE
--
2.25.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* PING^1 [PATCH] testsuite: Windows paths use \ and not /
2022-10-25 15:15 [PATCH] testsuite: Windows paths use \ and not / Torbjörn SVENSSON
@ 2022-11-02 18:16 ` Torbjorn SVENSSON
2022-11-17 16:44 ` PING^2 " Torbjorn SVENSSON
0 siblings, 1 reply; 4+ messages in thread
From: Torbjorn SVENSSON @ 2022-11-02 18:16 UTC (permalink / raw)
To: gcc-patches; +Cc: jwakely, yvan.roux
Hi,
Ping, https://gcc.gnu.org/pipermail/gcc-patches/2022-October/604312.html
Ok for trunk?
Kind regards,
Torbjörn
On 2022-10-25 17:15, Torbjörn SVENSSON wrote:
> Without this patch, the following error is reported on Windows:
>
> In file included from t:\build\arm-none-eabi\include\c++\11.3.1\string:54,
> from t:\build\arm-none-eabi\include\c++\11.3.1\bits\locale_classes.h:40,
> from t:\build\arm-none-eabi\include\c++\11.3.1\bits\ios_base.h:41,
> from t:\build\arm-none-eabi\include\c++\11.3.1\ios:42,
> from t:\build\arm-none-eabi\include\c++\11.3.1\ostream:38,
> from t:\build\arm-none-eabi\include\c++\11.3.1\iostream:39:
> t:\build\arm-none-eabi\include\c++\11.3.1\bits\range_access.h:36:10: note: include 't:\build\arm-none-eabi\include\c++\11.3.1\initializer_list' translated to import
> arm-none-eabi-g++.exe: warning: .../gcc/testsuite/g++.dg/modules/pr99023_b.X: linker input file unused because linking not done
> FAIL: g++.dg/modules/pr99023_b.X -std=c++2a dg-regexp 6 not found: "[^\n]*: note: include '[^\n]*/initializer_list' translated to import\n"
>
> gcc/testsuite/ChangeLog:
>
> * g++.dg/modules/pr99023_b.X: Match Windows paths too.
>
> Co-Authored-By: Yvan ROUX <yvan.roux@foss.st.com>
> Signed-off-by: Torbjörn SVENSSON <torbjorn.svensson@foss.st.com>
> ---
> gcc/testsuite/g++.dg/modules/pr99023_b.X | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/gcc/testsuite/g++.dg/modules/pr99023_b.X b/gcc/testsuite/g++.dg/modules/pr99023_b.X
> index 3d82f34868b..ca5f32e5bcc 100644
> --- a/gcc/testsuite/g++.dg/modules/pr99023_b.X
> +++ b/gcc/testsuite/g++.dg/modules/pr99023_b.X
> @@ -3,5 +3,5 @@
>
> // { dg-prune-output {linker input file unused} }
>
> -// { dg-regexp {[^\n]*: note: include '[^\n]*/initializer_list' translated to import\n} }
> +// { dg-regexp {[^\n]*: note: include '[^\n]*[/\\]initializer_list' translated to import\n} }
> NO DO NOT COMPILE
^ permalink raw reply [flat|nested] 4+ messages in thread
* PING^2 [PATCH] testsuite: Windows paths use \ and not /
2022-11-02 18:16 ` PING^1 " Torbjorn SVENSSON
@ 2022-11-17 16:44 ` Torbjorn SVENSSON
2022-11-21 15:38 ` Torbjorn SVENSSON
0 siblings, 1 reply; 4+ messages in thread
From: Torbjorn SVENSSON @ 2022-11-17 16:44 UTC (permalink / raw)
To: gcc-patches; +Cc: jwakely, yvan.roux
Hi,
Ping, https://gcc.gnu.org/pipermail/gcc-patches/2022-November/604896.html
Ok for trunk?
Kind regards,
Torbjörn
On 2022-11-02 19:16, Torbjorn SVENSSON wrote:
> Hi,
>
> Ping, https://gcc.gnu.org/pipermail/gcc-patches/2022-October/604312.html
>
> Ok for trunk?
>
> Kind regards,
> Torbjörn
>
> On 2022-10-25 17:15, Torbjörn SVENSSON wrote:
>> Without this patch, the following error is reported on Windows:
>>
>> In file included from
>> t:\build\arm-none-eabi\include\c++\11.3.1\string:54,
>> from
>> t:\build\arm-none-eabi\include\c++\11.3.1\bits\locale_classes.h:40,
>> from
>> t:\build\arm-none-eabi\include\c++\11.3.1\bits\ios_base.h:41,
>> from t:\build\arm-none-eabi\include\c++\11.3.1\ios:42,
>> from
>> t:\build\arm-none-eabi\include\c++\11.3.1\ostream:38,
>> from
>> t:\build\arm-none-eabi\include\c++\11.3.1\iostream:39:
>> t:\build\arm-none-eabi\include\c++\11.3.1\bits\range_access.h:36:10:
>> note: include
>> 't:\build\arm-none-eabi\include\c++\11.3.1\initializer_list'
>> translated to import
>> arm-none-eabi-g++.exe: warning:
>> .../gcc/testsuite/g++.dg/modules/pr99023_b.X: linker input file unused
>> because linking not done
>> FAIL: g++.dg/modules/pr99023_b.X -std=c++2a dg-regexp 6 not found:
>> "[^\n]*: note: include '[^\n]*/initializer_list' translated to import\n"
>>
>> gcc/testsuite/ChangeLog:
>>
>> * g++.dg/modules/pr99023_b.X: Match Windows paths too.
>>
>> Co-Authored-By: Yvan ROUX <yvan.roux@foss.st.com>
>> Signed-off-by: Torbjörn SVENSSON <torbjorn.svensson@foss.st.com>
>> ---
>> gcc/testsuite/g++.dg/modules/pr99023_b.X | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/gcc/testsuite/g++.dg/modules/pr99023_b.X
>> b/gcc/testsuite/g++.dg/modules/pr99023_b.X
>> index 3d82f34868b..ca5f32e5bcc 100644
>> --- a/gcc/testsuite/g++.dg/modules/pr99023_b.X
>> +++ b/gcc/testsuite/g++.dg/modules/pr99023_b.X
>> @@ -3,5 +3,5 @@
>> // { dg-prune-output {linker input file unused} }
>> -// { dg-regexp {[^\n]*: note: include '[^\n]*/initializer_list'
>> translated to import\n} }
>> +// { dg-regexp {[^\n]*: note: include '[^\n]*[/\\]initializer_list'
>> translated to import\n} }
>> NO DO NOT COMPILE
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: PING^2 [PATCH] testsuite: Windows paths use \ and not /
2022-11-17 16:44 ` PING^2 " Torbjorn SVENSSON
@ 2022-11-21 15:38 ` Torbjorn SVENSSON
0 siblings, 0 replies; 4+ messages in thread
From: Torbjorn SVENSSON @ 2022-11-21 15:38 UTC (permalink / raw)
To: gcc-patches; +Cc: jwakely, yvan.roux
Pushed after off-list approval from Jeff Law.
On 2022-11-17 17:44, Torbjorn SVENSSON via Gcc-patches wrote:
> Hi,
>
> Ping, https://gcc.gnu.org/pipermail/gcc-patches/2022-November/604896.html
>
> Ok for trunk?
>
> Kind regards,
> Torbjörn
>
> On 2022-11-02 19:16, Torbjorn SVENSSON wrote:
>> Hi,
>>
>> Ping, https://gcc.gnu.org/pipermail/gcc-patches/2022-October/604312.html
>>
>> Ok for trunk?
>>
>> Kind regards,
>> Torbjörn
>>
>> On 2022-10-25 17:15, Torbjörn SVENSSON wrote:
>>> Without this patch, the following error is reported on Windows:
>>>
>>> In file included from
>>> t:\build\arm-none-eabi\include\c++\11.3.1\string:54,
>>> from
>>> t:\build\arm-none-eabi\include\c++\11.3.1\bits\locale_classes.h:40,
>>> from
>>> t:\build\arm-none-eabi\include\c++\11.3.1\bits\ios_base.h:41,
>>> from
>>> t:\build\arm-none-eabi\include\c++\11.3.1\ios:42,
>>> from
>>> t:\build\arm-none-eabi\include\c++\11.3.1\ostream:38,
>>> from
>>> t:\build\arm-none-eabi\include\c++\11.3.1\iostream:39:
>>> t:\build\arm-none-eabi\include\c++\11.3.1\bits\range_access.h:36:10:
>>> note: include
>>> 't:\build\arm-none-eabi\include\c++\11.3.1\initializer_list'
>>> translated to import
>>> arm-none-eabi-g++.exe: warning:
>>> .../gcc/testsuite/g++.dg/modules/pr99023_b.X: linker input file
>>> unused because linking not done
>>> FAIL: g++.dg/modules/pr99023_b.X -std=c++2a dg-regexp 6 not found:
>>> "[^\n]*: note: include '[^\n]*/initializer_list' translated to import\n"
>>>
>>> gcc/testsuite/ChangeLog:
>>>
>>> * g++.dg/modules/pr99023_b.X: Match Windows paths too.
>>>
>>> Co-Authored-By: Yvan ROUX <yvan.roux@foss.st.com>
>>> Signed-off-by: Torbjörn SVENSSON <torbjorn.svensson@foss.st.com>
>>> ---
>>> gcc/testsuite/g++.dg/modules/pr99023_b.X | 2 +-
>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/gcc/testsuite/g++.dg/modules/pr99023_b.X
>>> b/gcc/testsuite/g++.dg/modules/pr99023_b.X
>>> index 3d82f34868b..ca5f32e5bcc 100644
>>> --- a/gcc/testsuite/g++.dg/modules/pr99023_b.X
>>> +++ b/gcc/testsuite/g++.dg/modules/pr99023_b.X
>>> @@ -3,5 +3,5 @@
>>> // { dg-prune-output {linker input file unused} }
>>> -// { dg-regexp {[^\n]*: note: include '[^\n]*/initializer_list'
>>> translated to import\n} }
>>> +// { dg-regexp {[^\n]*: note: include '[^\n]*[/\\]initializer_list'
>>> translated to import\n} }
>>> NO DO NOT COMPILE
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-11-21 15:38 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-25 15:15 [PATCH] testsuite: Windows paths use \ and not / Torbjörn SVENSSON
2022-11-02 18:16 ` PING^1 " Torbjorn SVENSSON
2022-11-17 16:44 ` PING^2 " Torbjorn SVENSSON
2022-11-21 15:38 ` Torbjorn SVENSSON
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).