Index: libs/graph/test/dijkstra_heap_performance.cpp =================================================================== RCS file: /cvsroot/boost/boost/libs/graph/test/dijkstra_heap_performance.cpp,v retrieving revision 1.4 diff -u -r1.4 dijkstra_heap_performance.cpp --- libs/graph/test/dijkstra_heap_performance.cpp 16 Dec 2005 21:48:33 -0000 1.4 +++ libs/graph/test/dijkstra_heap_performance.cpp 24 Oct 2007 20:11:58 -0000 @@ -27,6 +27,7 @@ #include #include #include +#include using namespace boost; @@ -145,5 +146,5 @@ run_test(g, "Pairing heap", dijkstra_pairing_heap, binary_heap_distances); run_test(g, "Splay heap", dijkstra_splay_heap, binary_heap_distances); #endif - return 0; + return boost::report_errors(); }