mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
Made `make distcheck' pass.
We added 2 macros A2_TEST_DIR and A2_TEST_OUT_DIR to pass tests in `make distcheck`. A2_TEST_DIR refers to test directory. All output files by unit tests are now created under A2_TEST_OUT_DIR directory.
This commit is contained in:
parent
7ac1f17d56
commit
3ee6784b76
40 changed files with 210 additions and 172 deletions
|
@ -4,6 +4,8 @@
|
|||
#include <cppunit/extensions/HelperMacros.h>
|
||||
|
||||
#include "DownloadFailureException.h"
|
||||
#include "util.h"
|
||||
#include "A2STR.h"
|
||||
|
||||
namespace aria2 {
|
||||
|
||||
|
@ -33,10 +35,10 @@ void ExceptionTest::testStackTrace()
|
|||
|
||||
CPPUNIT_ASSERT_EQUAL
|
||||
(std::string
|
||||
("Exception: [ExceptionTest.cc:32] errorCode=2 exception thrown\n"
|
||||
" -> [ExceptionTest.cc:30] errorCode=2 cause2\n"
|
||||
" -> [ExceptionTest.cc:29] errorCode=2 cause1\n"),
|
||||
e.stackTrace());
|
||||
("Exception: [ExceptionTest.cc:34] errorCode=2 exception thrown\n"
|
||||
" -> [ExceptionTest.cc:32] errorCode=2 cause2\n"
|
||||
" -> [ExceptionTest.cc:31] errorCode=2 cause1\n"),
|
||||
util::replace(e.stackTrace(), A2_TEST_DIR+A2STR::SLASH_C, ""));
|
||||
}
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue