Commit d2cfcb7b authored by Davis King's avatar Davis King

Added unit tests for new matrix operator>> and fixed a bug in it.

parent 3f2a0c2b
...@@ -59,17 +59,15 @@ namespace dlib ...@@ -59,17 +59,15 @@ namespace dlib
// Eat next block of whitespace but also note if we hit the start of the next // Eat next block of whitespace but also note if we hit the start of the next
// line. // line.
int last_ch = 'a'; // set last_ch to anything other than '\n'
while (next_is_whitespace(in)) while (next_is_whitespace(in))
{ {
if (last_ch == '\n' && in.peek() == '\n') if (at_start_of_line && in.peek() == '\n')
{ {
stop = true; stop = true;
break; break;
} }
last_ch = in.get(); if (in.get() == '\n')
if (last_ch == '\n')
at_start_of_line = true; at_start_of_line = true;
} }
} }
......
...@@ -1001,6 +1001,61 @@ namespace ...@@ -1001,6 +1001,61 @@ namespace
} }
void test_matrix_IO()
{
dlib::rand rnd;
print_spinner();
for (int i = 0; i < 400; ++i)
{
ostringstream sout;
sout.precision(20);
matrix<double> m1, m2, m3;
const long r = rnd.get_random_32bit_number()%7+1;
const long c = rnd.get_random_32bit_number()%7+1;
const long num = rnd.get_random_32bit_number()%2+1;
m1 = randm(r,c,rnd);
sout << m1;
if (num != 1)
sout << "\n" << m1;
if (rnd.get_random_double() < 0.3)
sout << " \n";
else if (rnd.get_random_double() < 0.3)
sout << " \n\n 3 3 3 3";
else if (rnd.get_random_double() < 0.3)
sout << " \n \n v 3 3 3 3 3";
istringstream sin(sout.str());
sin >> m2;
DLIB_TEST_MSG(equal(m1,m2), m1 << "\n***********\n" << m2);
if (num != 1)
{
sin >> m3;
DLIB_TEST_MSG(equal(m1,m3), m1 << "\n***********\n" << m3);
}
}
{
istringstream sin(" 1 2\n3");
matrix<double> m;
DLIB_TEST(sin);
sin >> m;
DLIB_TEST(!sin);
}
{
istringstream sin("");
matrix<double> m;
DLIB_TEST(sin);
sin >> m;
DLIB_TEST(!sin);
}
}
...@@ -1017,6 +1072,7 @@ namespace ...@@ -1017,6 +1072,7 @@ namespace
void perform_test ( void perform_test (
) )
{ {
test_matrix_IO();
matrix_test(); matrix_test();
} }
} a; } a;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment