X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2Fhexdump.test.cc;h=028c73b1936591a95b0b9af86b80471d18d7bd0e;hb=3863d46dd898b7bc35ea8c6ccd8563b18762a6b6;hp=98d63b39f839e6f76b5930b00fafe890b62f2925;hpb=f73fa16ed5abdce272ac77f8b8b9ef2b9922c266;p=senf.git diff --git a/Utils/hexdump.test.cc b/Utils/hexdump.test.cc index 98d63b3..028c73b 100644 --- a/Utils/hexdump.test.cc +++ b/Utils/hexdump.test.cc @@ -1,8 +1,8 @@ // $Id$ // -// Copyright (C) 2007 -// Fraunhofer Institute for Open Communication Systems (FOKUS) -// Competence Center NETwork research (NET), St. Augustin, GERMANY +// Copyright (C) 2007 +// Fraunhofer Institute for Open Communication Systems (FOKUS) +// Competence Center NETwork research (NET), St. Augustin, GERMANY // Stefan Bund // // This program is free software; you can redistribute it and/or modify @@ -21,7 +21,7 @@ // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. /** \file - \brief hexdump.test unit tests */ + \brief hexdump unit tests */ //#include "hexdump.test.hh" //#include "hexdump.test.ih" @@ -40,8 +40,8 @@ BOOST_AUTO_UNIT_TEST(hExDuMp) { char data[] = { 0x18, 0x19, 0x20, 0x21, 0x7c, 0x7d, 0x7e, 0x7f }; std::stringstream s; - senf::hexdump(data, data+sizeof(data), s, 8); - BOOST_CHECK_EQUAL( s.str(), " 0000 18 19 20 21 7c 7d 7e 7f .. ! |}..\n" ); + senf::hexdump(data, data+sizeof(data), s, 10); + BOOST_CHECK_EQUAL( s.str(), " 0000 18 19 20 21 7c 7d 7e 7f .. !| }..\n" ); } ///////////////////////////////cc.e////////////////////////////////////////