$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Bronek Kozicki (brok_at_[hidden])
Date: 2004-08-20 10:01:43
For some time already I'm receiving failed assertion error in
iterator_facade test. The problem is that this error is displaying
message box (is calling _assert function defined in CRT) that cannot be
automatially closed by execution_monitor.exe . I suggest that
BOOST_ASSERT(state == 8) in iterator_facade.cpp be changed to
BOOST_CHECK_EQUAL(state, 8) . Actual value of "state" variable at this
point in this test is 7, thus failed assertion.
B.