[Bug libstdc++/53984] iostream operation throwing exception when exceptions not enabled

2017-09-13 Thread aldyh at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53984 --- Comment #15 from Aldy Hernandez --- Author: aldyh Date: Wed Sep 13 15:49:50 2017 New Revision: 252105 URL: https://gcc.gnu.org/viewcvs?rev=252105=gcc=rev Log: PR libstdc++/53984 fix failing test PR libstdc++/53984 *

[Bug libstdc++/53984] iostream operation throwing exception when exceptions not enabled

2017-09-04 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53984 Jonathan Wakely changed: What|Removed |Added Target Milestone|--- |5.5

[Bug libstdc++/53984] iostream operation throwing exception when exceptions not enabled

2017-09-04 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53984 Jonathan Wakely changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug libstdc++/53984] iostream operation throwing exception when exceptions not enabled

2017-09-04 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53984 --- Comment #13 from Jonathan Wakely --- Author: redi Date: Mon Sep 4 17:09:01 2017 New Revision: 251679 URL: https://gcc.gnu.org/viewcvs?rev=251679=gcc=rev Log: PR libstdc++/53984 handle exceptions in basic_istream::sentry Backport from

[Bug libstdc++/53984] iostream operation throwing exception when exceptions not enabled

2017-09-04 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53984 --- Comment #12 from Jonathan Wakely --- Author: redi Date: Mon Sep 4 16:52:25 2017 New Revision: 251675 URL: https://gcc.gnu.org/viewcvs?rev=251675=gcc=rev Log: PR libstdc++/53984 handle exceptions in basic_istream::sentry Backport from

[Bug libstdc++/53984] iostream operation throwing exception when exceptions not enabled

2017-08-14 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53984 --- Comment #12 from Jonathan Wakely --- Author: redi Date: Mon Aug 14 12:14:01 2017 New Revision: 251089 URL: https://gcc.gnu.org/viewcvs?rev=251089=gcc=rev Log: PR libstdc++/53984 handle exceptions in basic_istream::sentry Backport from

[Bug libstdc++/53984] iostream operation throwing exception when exceptions not enabled

2017-07-26 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53984 --- Comment #11 from Jonathan Wakely --- Author: redi Date: Wed Jul 26 22:06:13 2017 New Revision: 250594 URL: https://gcc.gnu.org/viewcvs?rev=250594=gcc=rev Log: PR libstdc++/53984 fix failing test PR libstdc++/53984 *

[Bug libstdc++/53984] iostream operation throwing exception when exceptions not enabled

2017-07-25 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53984 Jonathan Wakely changed: What|Removed |Added Known to work||8.0 --- Comment #10 from Jonathan

[Bug libstdc++/53984] iostream operation throwing exception when exceptions not enabled

2017-07-25 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53984 --- Comment #9 from Jonathan Wakely --- Author: redi Date: Tue Jul 25 20:36:06 2017 New Revision: 250545 URL: https://gcc.gnu.org/viewcvs?rev=250545=gcc=rev Log: PR libstdc++/53984 handle exceptions in basic_istream::sentry PR

[Bug libstdc++/53984] iostream operation throwing exception when exceptions not enabled

2017-07-25 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53984 --- Comment #8 from Jonathan Wakely --- FAIL: 27_io/basic_filebuf/overflow/char/9182-2.cc execution test This fails because it explicitly tests for an exception: try { fbuf1.sputn("ison", 4); fbuf1.pubsync(); VERIFY(

[Bug libstdc++/53984] iostream operation throwing exception when exceptions not enabled

2017-04-28 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53984 --- Comment #7 from Jonathan Wakely --- Eventually. I tried removing the throws and got a bunch of test failures: FAIL: 27_io/basic_filebuf/overflow/char/9182-2.cc execution test FAIL: 27_io/basic_filebuf/seekoff/wchar_t/3.cc execution test

[Bug libstdc++/53984] iostream operation throwing exception when exceptions not enabled

2017-04-28 Thread dibeas at ieee dot org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53984 David Rodriguez Ibeas changed: What|Removed |Added CC||dibeas at ieee dot org ---

[Bug libstdc++/53984] iostream operation throwing exception when exceptions not enabled

2016-05-05 Thread rogero at howzatt dot demon.co.uk
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53984 --- Comment #5 from Roger Orr --- Still fails with gcc 6.1 Are there any plans on how (and when) to fix this, fairly serious, fault?

[Bug libstdc++/53984] iostream operation throwing exception when exceptions not enabled

2014-05-20 Thread igorlord at alum dot mit.edu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53984 --- Comment #4 from Igor igorlord at alum dot mit.edu --- This is a really evil bug. I wonder why the Importance is not higher. This may crash programs that try to read many /proc files on Linux. ~$ g++ -x c++ -o test - EOF #include fstream

[Bug libstdc++/53984] iostream operation throwing exception when exceptions not enabled

2013-12-04 Thread tom at kera dot name
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53984 Tomalak Geret'kal tom at kera dot name changed: What|Removed |Added CC||tom at kera dot

[Bug libstdc++/53984] iostream operation throwing exception when exceptions not enabled

2012-07-16 Thread gccbz.10.petechap at spamgourmet dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53984 --- Comment #1 from Pete Chapman gccbz.10.petechap at spamgourmet dot com 2012-07-16 17:00:10 UTC --- Even simpler: --- #include fstream int main() { std::ifstream in(.); int x; if (in) in x; }

[Bug libstdc++/53984] iostream operation throwing exception when exceptions not enabled

2012-07-16 Thread redi at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53984 Jonathan Wakely redi at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |NEW Last