diff -r 91fb4372688f -r 02f4d5d9bfd7 test/heap_test.cc --- a/test/heap_test.cc Sun Jun 15 22:03:33 2008 +0200 +++ b/test/heap_test.cc Sun Jun 15 22:05:23 2008 +0200 @@ -42,7 +42,6 @@ using namespace lemon; using namespace lemon::concepts; - int main() { typedef int Item; @@ -77,7 +76,7 @@ run(); { - std::cerr << "Checking Bin Heap" << std::endl; + std::cout << "Checking Bin Heap" << std::endl; typedef BinHeap IntHeap; checkConcept, IntHeap>(); @@ -91,7 +90,7 @@ std::cout << timer << std::endl; } { - std::cerr << "Checking Fib Heap" << std::endl; + std::cout << "Checking Fib Heap" << std::endl; typedef FibHeap IntHeap; checkConcept, IntHeap>(); @@ -105,7 +104,7 @@ std::cout << timer << std::endl; } { - std::cerr << "Checking Radix Heap" << std::endl; + std::cout << "Checking Radix Heap" << std::endl; typedef RadixHeap IntHeap; checkConcept, IntHeap>(); @@ -120,7 +119,7 @@ } { - std::cerr << "Checking Bucket Heap" << std::endl; + std::cout << "Checking Bucket Heap" << std::endl; typedef BucketHeap IntHeap; checkConcept, IntHeap>(); @@ -134,7 +133,5 @@ std::cout << timer << std::endl; } - std::cout << __FILE__ ": All tests passed.\n"; - return 0; }