mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
2009-12-05 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Fixed compile error if ENABLE_BITTORRENT is undefined. * src/DefaultPieceStorage.cc * src/DefaultPieceStorage.h * src/PieceStorage.h * src/UnknownLengthPieceStorage.cc * src/UnknownLengthPieceStorage.h * test/MockPieceStorage.h * test/ProtocolDetectorTest.cc * test/XmlRpcMethodTest.cc
This commit is contained in:
parent
66e864daf2
commit
9a6a73dd96
9 changed files with 62 additions and 24 deletions
|
@ -1,8 +1,9 @@
|
|||
#include "ProtocolDetector.h"
|
||||
|
||||
#include <cppunit/extensions/HelperMacros.h>
|
||||
|
||||
#include "Exception.h"
|
||||
#include "util.h"
|
||||
#include <iostream>
|
||||
#include <cppunit/extensions/HelperMacros.h>
|
||||
|
||||
namespace aria2 {
|
||||
|
||||
|
@ -47,10 +48,16 @@ void ProtocolDetectorTest::testGuessTorrentFile()
|
|||
void ProtocolDetectorTest::testGuessTorrentMagnet()
|
||||
{
|
||||
ProtocolDetector detector;
|
||||
#ifdef ENABLE_BITTORRENT
|
||||
CPPUNIT_ASSERT
|
||||
(detector.guessTorrentMagnet
|
||||
("magnet:?xt=urn:btih:248d0a1cd08284299de78d5c1ed359bb46717d8c"));
|
||||
CPPUNIT_ASSERT(!detector.guessTorrentMagnet("magnet:?"));
|
||||
#else // !ENABLE_BITTORRENT
|
||||
CPPUNIT_ASSERT
|
||||
(!detector.guessTorrentMagnet
|
||||
("magnet:?xt=urn:btih:248d0a1cd08284299de78d5c1ed359bb46717d8c"));
|
||||
#endif // !ENABLE_BITTORRENT
|
||||
}
|
||||
|
||||
void ProtocolDetectorTest::testGuessMetalinkFile()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue