mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
2008-03-07 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Use unsigned char for data store.
This commit is contained in:
parent
7578d5fb22
commit
fc0fa4203a
86 changed files with 378 additions and 312 deletions
|
@ -78,12 +78,13 @@ void HttpHeaderProcessorTest::testGetPutBackDataLength()
|
|||
void HttpHeaderProcessorTest::testGetPutBackDataLength_nullChar()
|
||||
{
|
||||
HttpHeaderProcessor proc;
|
||||
proc.update("HTTP/1.1 200 OK\r\n"
|
||||
"foo: foo\0bar\r\n"
|
||||
"\r\nputbackme", 35+7);
|
||||
const char* x = "HTTP/1.1 200 OK\r\n"
|
||||
"foo: foo\0bar\r\n"
|
||||
"\r\nputbackme";
|
||||
std::string hd1(&x[0], &x[42]);
|
||||
proc.update(hd1);
|
||||
CPPUNIT_ASSERT(proc.eoh());
|
||||
CPPUNIT_ASSERT_EQUAL((int32_t)9, proc.getPutBackDataLength());
|
||||
|
||||
}
|
||||
|
||||
void HttpHeaderProcessorTest::testGetHttpStatusHeader()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue