You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
830 B
34 lines
830 B
#include "test_I.h"
|
|
#include <cln/input.h>
|
|
#include <sstream>
|
|
|
|
int test_I_io (int iterations)
|
|
{
|
|
int error = 0;
|
|
for (int i = iterations; i > 0; i--) {
|
|
cl_I a = testrandom_I();
|
|
unsigned base = iterations % (36-1) + 2;
|
|
cl_read_flags rflags = {syntax_integer, lsyntax_standard, base};
|
|
stringstream buf;
|
|
print_integer(buf, base, a);
|
|
cl_I b;
|
|
try {
|
|
b = read_integer(buf, rflags);
|
|
ASSERT1(a == b, a);
|
|
} catch (runtime_exception& err) {
|
|
std::cerr << "Got an error while parsing \""
|
|
<< buf.str() << "\" with base = " << base
|
|
<< " (in decimal: " << a << ")" << std::endl;
|
|
std::cerr << "Details: " << err.what() << std::endl;
|
|
++error;
|
|
break;
|
|
}
|
|
|
|
}
|
|
#if defined(_WIN32)
|
|
std::cerr << "[The test is known to fail on this platform, ignore it]" << std::endl;
|
|
return 0;
|
|
#else
|
|
return error;
|
|
#endif
|
|
}
|