[Bug libstdc++/113230] 27_io/print/1.cc fails when run with qemu

2024-01-13 Thread hp at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113230 --- Comment #9 from Hans-Peter Nilsson --- By the (In reply to Jonathan Wakely from comment #8) > Although I guess Andrew's qemu setup doesn't match the simulator ET. FWIW, by his uploaded board-info file calling 'load_generic_config "sim"'

[Bug libstdc++/113230] 27_io/print/1.cc fails when run with qemu

2024-01-13 Thread redi at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113230 --- Comment #8 from Jonathan Wakely --- Although I guess Andrew's qemu setup doesn't match the simulator ET.

[Bug libstdc++/113230] 27_io/print/1.cc fails when run with qemu

2024-01-13 Thread redi at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113230 --- Comment #7 from Jonathan Wakely --- Maybe that part of the test could just use { target { ! simulator } } It's testing something that is highly dependent on the runtime context. It's worth testing ... but only when we can control the

[Bug libstdc++/113230] 27_io/print/1.cc fails when run with qemu

2024-01-12 Thread hp at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113230 Hans-Peter Nilsson changed: What|Removed |Added CC||hp at gcc dot gnu.org --- Comment

[Bug libstdc++/113230] 27_io/print/1.cc fails when run with qemu

2024-01-04 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113230 --- Comment #5 from Andrew Pinski --- Created attachment 56988 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=56988=edit dejagnu board that I use And run the testsuite like: export SIM_ARM=qemu-aarch64 export QEMU_LD_PREFIX=${SYSROOT}

[Bug libstdc++/113230] 27_io/print/1.cc fails when run with qemu

2024-01-04 Thread schwab--- via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113230 --- Comment #4 from Andreas Schwab --- What does "run with qemu" mean exactly?

[Bug libstdc++/113230] 27_io/print/1.cc fails when run with qemu

2024-01-04 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113230 --- Comment #3 from Andrew Pinski --- (In reply to Jonathan Wakely from comment #2) > The point of the test is to write out a byte that isn't valid UTF-8, and > check that it's printed unchanged, as a single byte. If something does some > kind

[Bug libstdc++/113230] 27_io/print/1.cc fails when run with qemu

2024-01-04 Thread redi at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113230 --- Comment #2 from Jonathan Wakely --- The point of the test is to write out a byte that isn't valid UTF-8, and check that it's printed unchanged, as a single byte. If something does some kind of iconv-like conversion on the test output and

[Bug libstdc++/113230] 27_io/print/1.cc fails when run with qemu

2024-01-04 Thread redi at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113230 --- Comment #1 from Jonathan Wakely --- But any single character should match "." in the regex. Is the output being converted (somewhere) from Latin-1 to UTF-8 which means that "À" becomes more than one byte, and the regex doesn't match?