mirror of git://gcc.gnu.org/git/gcc.git
istream_sentry.cc (test02): Fix.
2001-01-17 Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de> * testsuite/27_io/istream_sentry.cc (test02): Fix. From-SVN: r39089
This commit is contained in:
parent
ed8cc5fdf8
commit
86b4d21106
|
|
@ -1,3 +1,7 @@
|
||||||
|
2001-01-17 Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de>
|
||||||
|
|
||||||
|
* testsuite/27_io/istream_sentry.cc (test02): Fix.
|
||||||
|
|
||||||
2001-01-16 Benjamin Kosnik <bkoz@redhat.com>
|
2001-01-16 Benjamin Kosnik <bkoz@redhat.com>
|
||||||
|
|
||||||
libstdc++/1605
|
libstdc++/1605
|
||||||
|
|
|
||||||
|
|
@ -73,6 +73,8 @@ test02()
|
||||||
while(in >> x)
|
while(in >> x)
|
||||||
{
|
{
|
||||||
++i;
|
++i;
|
||||||
|
if (i > 3)
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
VERIFY( i == 3 );
|
VERIFY( i == 3 );
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue