1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603
|
/** @file unittest.cc
* @brief Unit tests of non-Xapian-specific internal code.
*/
/* Copyright (C) 2006,2007,2009,2010,2012,2015,2016 Olly Betts
* Copyright (C) 2007 Richard Boulton
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
* USA
*/
#include <config.h>
#include <cfloat>
#include <climits>
#include <cmath>
#include <cstring>
#include <iostream>
#include "safeunistd.h"
#define XAPIAN_UNITTEST
static const char * unittest_assertion_failed = NULL;
#define UNITTEST_CHECK_EXCEPTION \
if (unittest_assertion_failed) { \
const char * unittest_assertion_failed_ = unittest_assertion_failed;\
unittest_assertion_failed = NULL;\
throw unittest_assertion_failed_;\
}
#include "testsuite.h"
using namespace std;
#define UNITTEST_ASSERT_LOCATION__(LINE,MSG) __FILE__":"#LINE": "#MSG
#define UNITTEST_ASSERT_LOCATION_(LINE,MSG) UNITTEST_ASSERT_LOCATION__(LINE,MSG)
#define UNITTEST_ASSERT_LOCATION(MSG) UNITTEST_ASSERT_LOCATION_(__LINE__,MSG)
#define UNITTEST_ASSERT_NOTHROW(COND, RET) \
do {\
if (rare(!(COND))) {\
unittest_assertion_failed = UNITTEST_ASSERT_LOCATION(COND);\
return RET;\
}\
} while (false)
// Utility code we use:
#include "../common/stringutils.h"
#include "../common/log2.h"
// Simpler version of TEST_EXCEPTION macro.
#define TEST_EXCEPTION(TYPE, CODE) \
do { \
try { \
CODE; \
UNITTEST_CHECK_EXCEPTION \
FAIL_TEST("Expected exception "#TYPE" not thrown"); \
} catch (const TYPE &) { \
} \
} while (0)
// Code we're unit testing:
#include "../common/closefrom.cc"
#include "../common/errno_to_string.cc"
#include "../common/fileutils.cc"
#include "../common/serialise-double.cc"
#include "../common/str.cc"
#include "../net/length.cc"
#include "../net/serialise-error.cc"
#include "../api/error.cc"
#include "../api/sortable-serialise.cc"
// Stub replacement, which doesn't deal with escaping or producing valid UTF-8.
// The full implementation needs Xapian::Utf8Iterator and
// Xapian::Unicode::append_utf8().
void
description_append(std::string & desc, const std::string &s)
{
desc += s;
}
DEFINE_TESTCASE_(simple_exceptions_work1) {
try {
throw 42;
} catch (int val) {
TEST_EQUAL(val, 42);
return true;
}
return false;
}
class TestException { };
DEFINE_TESTCASE_(class_exceptions_work1) {
try {
throw TestException();
} catch (const TestException &) {
return true;
}
return false;
}
inline string
r_r_p(string a, const string & b)
{
resolve_relative_path(a, b);
return a;
}
DEFINE_TESTCASE_(resolverelativepath1) {
TEST_EQUAL(r_r_p("/abs/o/lute", ""), "/abs/o/lute");
TEST_EQUAL(r_r_p("/abs/o/lute", "/"), "/abs/o/lute");
TEST_EQUAL(r_r_p("/abs/o/lute", "//"), "/abs/o/lute");
TEST_EQUAL(r_r_p("/abs/o/lute", "foo"), "/abs/o/lute");
TEST_EQUAL(r_r_p("/abs/o/lute", "foo/"), "/abs/o/lute");
TEST_EQUAL(r_r_p("/abs/o/lute", "/foo"), "/abs/o/lute");
TEST_EQUAL(r_r_p("/abs/o/lute", "/foo/"), "/abs/o/lute");
TEST_EQUAL(r_r_p("/abs/o/lute", "foo/bar"), "/abs/o/lute");
TEST_EQUAL(r_r_p("/abs/o/lute", "foo/bar/"), "/abs/o/lute");
TEST_EQUAL(r_r_p("/abs/o/lute", "/foo/bar"), "/abs/o/lute");
TEST_EQUAL(r_r_p("/abs/o/lute", "/foo/bar/"), "/abs/o/lute");
TEST_EQUAL(r_r_p("rel/a/tive", ""), "rel/a/tive");
TEST_EQUAL(r_r_p("rel/a/tive", "/"), "/rel/a/tive");
TEST_EQUAL(r_r_p("rel/a/tive", "//"), "//rel/a/tive");
TEST_EQUAL(r_r_p("rel/a/tive", "foo"), "rel/a/tive");
TEST_EQUAL(r_r_p("rel/a/tive", "foo/"), "foo/rel/a/tive");
TEST_EQUAL(r_r_p("rel/a/tive", "/foo"), "/rel/a/tive");
TEST_EQUAL(r_r_p("rel/a/tive", "/foo/"), "/foo/rel/a/tive");
TEST_EQUAL(r_r_p("rel/a/tive", "foo/bar"), "foo/rel/a/tive");
TEST_EQUAL(r_r_p("rel/a/tive", "foo/bar/"), "foo/bar/rel/a/tive");
TEST_EQUAL(r_r_p("rel/a/tive", "/foo/bar"), "/foo/rel/a/tive");
TEST_EQUAL(r_r_p("rel/a/tive", "/foo/bar/"), "/foo/bar/rel/a/tive");
#ifndef __WIN32__
TEST_EQUAL(r_r_p("/abs/o/lute", "/foo\\bar"), "/abs/o/lute");
TEST_EQUAL(r_r_p("rel/a/tive", "/foo\\bar"), "/rel/a/tive");
#else
TEST_EQUAL(r_r_p("\\dos\\path", ""), "\\dos\\path");
TEST_EQUAL(r_r_p("\\dos\\path", "/"), "\\dos\\path");
TEST_EQUAL(r_r_p("\\dos\\path", "\\"), "\\dos\\path");
TEST_EQUAL(r_r_p("\\dos\\path", "c:"), "c:\\dos\\path");
TEST_EQUAL(r_r_p("\\dos\\path", "c:\\"), "c:\\dos\\path");
TEST_EQUAL(r_r_p("\\dos\\path", "c:\\temp"), "c:\\dos\\path");
TEST_EQUAL(r_r_p("\\dos\\path", "c:\\temp\\"), "c:\\dos\\path");
TEST_EQUAL(r_r_p("rel/a/tive", "\\"), "\\rel/a/tive");
TEST_EQUAL(r_r_p("rel/a/tive", "foo\\"), "foo\\rel/a/tive");
TEST_EQUAL(r_r_p("rel\\a\\tive", "/foo/"), "/foo/rel\\a\\tive");
TEST_EQUAL(r_r_p("rel/a/tive", "c:/foo/bar"), "c:/foo/rel/a/tive");
TEST_EQUAL(r_r_p("rel/a/tive", "c:foo/bar/"), "c:foo/bar/rel/a/tive");
TEST_EQUAL(r_r_p("rel/a/tive", "c:"), "c:rel/a/tive");
TEST_EQUAL(r_r_p("rel/a/tive", "c:\\"), "c:\\rel/a/tive");
TEST_EQUAL(r_r_p("C:rel/a/tive", "c:\\foo\\bar"), "C:\\foo\\rel/a/tive");
TEST_EQUAL(r_r_p("C:rel/a/tive", "c:"), "C:rel/a/tive");
// This one is impossible to reliably resolve without knowing the current
// drive - if it is C:, then the answer is: "C:/abs/o/rel/a/tive"
TEST_EQUAL(r_r_p("C:rel/a/tive", "/abs/o/lute"), "C:rel/a/tive");
// UNC paths tests:
TEST_EQUAL(r_r_p("\\\\SRV\\VOL\\FILE", "/a/b"), "\\\\SRV\\VOL\\FILE");
TEST_EQUAL(r_r_p("rel/a/tive", "\\\\SRV\\VOL\\DIR\\FILE"), "\\\\SRV\\VOL\\DIR\\rel/a/tive");
TEST_EQUAL(r_r_p("/abs/o/lute", "\\\\SRV\\VOL\\FILE"), "\\\\SRV\\VOL/abs/o/lute");
TEST_EQUAL(r_r_p("/abs/o/lute", "\\\\S\\V\\FILE"), "\\\\S\\V/abs/o/lute");
TEST_EQUAL(r_r_p("/abs/o/lute", "\\\\S\\V\\"), "\\\\S\\V/abs/o/lute");
TEST_EQUAL(r_r_p("/abs/o/lute", "\\\\S\\V"), "\\\\S\\V/abs/o/lute");
TEST_EQUAL(r_r_p("//SRV/VOL/FILE", "/a/b"), "//SRV/VOL/FILE");
TEST_EQUAL(r_r_p("rel/a/tive", "//SRV/VOL/DIR/FILE"), "//SRV/VOL/DIR/rel/a/tive");
TEST_EQUAL(r_r_p("/abs/o/lute", "//SRV/VOL/FILE"), "//SRV/VOL/abs/o/lute");
TEST_EQUAL(r_r_p("/abs/o/lute", "//S/V/FILE"), "//S/V/abs/o/lute");
TEST_EQUAL(r_r_p("/abs/o/lute", "//S/V/"), "//S/V/abs/o/lute");
TEST_EQUAL(r_r_p("/abs/o/lute", "//S/V"), "//S/V/abs/o/lute");
TEST_EQUAL(r_r_p("/abs/o/lute", "\\\\?\\C:\\wibble"), "\\\\?\\C:\\abs\\o\\lute");
TEST_EQUAL(r_r_p("/abs/o/lute", "\\\\?\\UNC\\S\\V"), "\\\\?\\UNC\\S\\V\\abs\\o\\lute");
TEST_EQUAL(r_r_p("/abs/o/lute", "\\\\?\\UNC\\S\\V\\"), "\\\\?\\UNC\\S\\V\\abs\\o\\lute");
TEST_EQUAL(r_r_p("/abs/o/lute", "\\\\?\\UNC\\S\\V\\TMP\\README.TXT"), "\\\\?\\UNC\\S\\V\\abs\\o\\lute");
TEST_EQUAL(r_r_p("r/elativ/e", "\\\\?\\C:\\wibble"), "\\\\?\\C:\\r\\elativ\\e");
TEST_EQUAL(r_r_p("r/elativ/e", "\\\\?\\C:\\wibble\\wobble"), "\\\\?\\C:\\wibble\\r\\elativ\\e");
#if 0 // Is this a valid testcase? It fails, but isn't relevant to Xapian.
TEST_EQUAL(r_r_p("r/elativ/e", "\\\\?\\UNC\\S\\V"), "\\\\?\\UNC\\S\\V\\r\\elativ\\e");
#endif
TEST_EQUAL(r_r_p("r/elativ/e", "\\\\?\\UNC\\S\\V\\"), "\\\\?\\UNC\\S\\V\\r\\elativ\\e");
TEST_EQUAL(r_r_p("r/elativ/e", "\\\\?\\UNC\\S\\V\\TMP\\README.TXT"), "\\\\?\\UNC\\S\\V\\TMP\\r\\elativ\\e");
#endif
return true;
}
static void
check_double_serialisation(double u)
{
// Commonly C++ string implementations keep the string nul-terminated, and
// encoded.data() returns a pointer to a buffer including the nul (the same
// as encoded.c_str()). This means that valgrind won't catch a read one
// past the end of the serialised value, so we copy just the serialised
// value into a temporary buffer.
char buf[16];
string encoded = serialise_double(u);
TEST(encoded.size() < sizeof(buf));
memcpy(buf, encoded.data(), encoded.size());
// Put a NULL pointer either side, to catch incrementing/decrementing at
// the wrong level of indirection (regression test for a bug in an
// unreleased version).
const char * ptr[3] = { NULL, buf, NULL };
const char * end = ptr[1] + encoded.size();
double v = unserialise_double(&(ptr[1]), end);
if (ptr[1] != end || u != v) {
cout << u << " -> " << v << ", difference = " << v - u << endl;
cout << "FLT_RADIX = " << FLT_RADIX << endl;
cout << "DBL_MAX_EXP = " << DBL_MAX_EXP << endl;
}
TEST_EQUAL(static_cast<const void*>(ptr[1]), static_cast<const void*>(end));
}
// Check serialisation of doubles.
DEFINE_TESTCASE_(serialisedouble1) {
static const double test_values[] = {
3.14159265,
1e57,
123.1,
257.12,
1234.567e123,
255.5,
256.125,
257.03125,
};
check_double_serialisation(0.0);
check_double_serialisation(1.0);
check_double_serialisation(-1.0);
check_double_serialisation(DBL_MAX);
check_double_serialisation(-DBL_MAX);
check_double_serialisation(DBL_MIN);
check_double_serialisation(-DBL_MIN);
const double *p;
for (p = test_values; p < test_values + sizeof(test_values) / sizeof(double); ++p) {
double val = *p;
check_double_serialisation(val);
check_double_serialisation(-val);
check_double_serialisation(1.0 / val);
check_double_serialisation(-1.0 / val);
}
return true;
}
#ifdef XAPIAN_HAS_REMOTE_BACKEND
// Check serialisation of lengths.
static bool test_serialiselength1()
{
size_t n = 0;
while (n < 0xff000000) {
string s = encode_length(n);
const char *p = s.data();
const char *p_end = p + s.size();
size_t decoded_n;
decode_length(&p, p_end, decoded_n);
if (n != decoded_n || p != p_end) tout << "[" << s << "]" << endl;
TEST_EQUAL(n, decoded_n);
TEST_EQUAL(p_end - p, 0);
if (n < 5000) {
++n;
} else {
n += 53643;
}
}
return true;
}
// Regression test: vetting the remaining buffer length
static bool test_serialiselength2()
{
// Special case tests for 0
{
string s = encode_length(0);
{
const char *p = s.data();
const char *p_end = p + s.size();
size_t r;
decode_length_and_check(&p, p_end, r);
TEST(r == 0);
TEST(p == p_end);
}
s += 'x';
{
const char *p = s.data();
const char *p_end = p + s.size();
size_t r;
decode_length_and_check(&p, p_end, r);
TEST(r == 0);
TEST_EQUAL(p_end - p, 1);
}
}
// Special case tests for 1
{
string s = encode_length(1);
TEST_EXCEPTION(Xapian_NetworkError,
const char *p = s.data();
const char *p_end = p + s.size();
size_t r;
decode_length_and_check(&p, p_end, r);
(void)r;
);
s += 'x';
{
const char *p = s.data();
const char *p_end = p + s.size();
size_t r;
decode_length_and_check(&p, p_end, r);
TEST(r == 1);
TEST_EQUAL(p_end - p, 1);
}
s += 'x';
{
const char *p = s.data();
const char *p_end = p + s.size();
size_t r;
decode_length_and_check(&p, p_end, r);
TEST(r == 1);
TEST_EQUAL(p_end - p, 2);
}
}
// Nothing magic here, just test a range of odd and even values.
for (size_t n = 2; n < 1000; n = (n + 1) * 2 + (n >> 1)) {
string s = encode_length(n);
TEST_EXCEPTION(Xapian_NetworkError,
const char *p = s.data();
const char *p_end = p + s.size();
size_t r;
decode_length_and_check(&p, p_end, r);
(void)r;
);
s.append(n - 1, 'x');
TEST_EXCEPTION(Xapian_NetworkError,
const char *p = s.data();
const char *p_end = p + s.size();
size_t r;
decode_length_and_check(&p, p_end, r);
(void)r;
);
s += 'x';
{
const char *p = s.data();
const char *p_end = p + s.size();
size_t r;
decode_length_and_check(&p, p_end, r);
TEST(r == n);
TEST_EQUAL(size_t(p_end - p), n);
}
s += 'x';
{
const char *p = s.data();
const char *p_end = p + s.size();
size_t r;
decode_length_and_check(&p, p_end, r);
TEST(r == n);
TEST_EQUAL(size_t(p_end - p), n + 1);
}
}
return true;
}
// Check serialisation of Xapian::Error.
static bool test_serialiseerror1()
{
string enoent_msg(strerror(ENOENT));
Xapian::DatabaseOpeningError e("Failed to open database", ENOENT);
// Regression test for bug in 1.0.0 - it didn't convert errno values for
// get_description() if they hadn't already been converted.
TEST_STRINGS_EQUAL(e.get_description(), "DatabaseOpeningError: Failed to open database (" + enoent_msg + ")");
TEST_STRINGS_EQUAL(e.get_error_string(), enoent_msg);
string serialisation = serialise_error(e);
// Test if unserialise_error() throws with a flag to avoid the possibility
// of an "unreachable code" warning when we get around to marking
// unserialise_error() as "noreturn".
bool threw = false;
try {
// unserialise_error throws an exception.
unserialise_error(serialisation, "", "");
} catch (const Xapian::Error & ecaught) {
TEST_STRINGS_EQUAL(ecaught.get_error_string(), enoent_msg);
threw = true;
}
TEST(threw);
// Check that the original is still OK.
TEST_STRINGS_EQUAL(e.get_error_string(), enoent_msg);
// Regression test - in 1.0.0, copying used to duplicate the error_string
// pointer, resulting in double calls to free().
Xapian::DatabaseOpeningError ecopy(e);
TEST_STRINGS_EQUAL(ecopy.get_error_string(), enoent_msg);
return true;
}
#endif
// Test log2() (which might be our replacement version).
static bool test_log2()
{
TEST_EQUAL(log2(1.0), 0.0);
TEST_EQUAL(log2(2.0), 1.0);
TEST_EQUAL(log2(1024.0), 10.0);
TEST_EQUAL(log2(0.5), -1.0);
return true;
}
static const double test_sortableserialise_numbers[] = {
#ifdef INFINITY
-INFINITY,
#endif
-HUGE_VAL,
-DBL_MAX,
-exp2(1022),
-1024.5,
-3.14159265358979323846,
-3,
-2,
-1.8,
-1.1,
-1,
-0.5,
-0.2,
-0.1,
-0.000005,
-0.000002,
-0.000001,
-exp2(-1023),
-exp2(-1024),
-exp2(-1074),
-DBL_MIN,
0,
DBL_MIN,
exp2(-1074),
exp2(-1024),
exp2(-1023),
0.000001,
0.000002,
0.000005,
0.1,
0.2,
0.5,
1,
1.1,
1.8,
2,
3,
3.14159265358979323846,
1024.5,
exp2(1022),
DBL_MAX,
HUGE_VAL,
#ifdef INFINITY
INFINITY,
#endif
64 // Magic number which we stop at.
};
// Test serialisation and unserialisation of various numbers.
// This is actually a public API, but we want extra assertions in the code
// while we test it.
static bool test_sortableserialise1()
{
double prevnum = 0;
string prevstr;
bool started = false;
for (const double *p = test_sortableserialise_numbers; *p != 64; ++p) {
double num = *p;
tout << "Number: " << num << '\n';
string str = Xapian::sortable_serialise(num);
tout << "String: " << str << '\n';
TEST_EQUAL(Xapian::sortable_unserialise(str), num);
if (started) {
int num_cmp = 0;
if (prevnum < num) {
num_cmp = -1;
} else if (prevnum > num) {
num_cmp = 1;
}
int str_cmp = 0;
if (prevstr < str) {
str_cmp = -1;
} else if (prevstr > str) {
str_cmp = 1;
}
TEST_AND_EXPLAIN(num_cmp == str_cmp,
"Numbers " << prevnum << " and " << num <<
" don't sort the same way as their string "
"counterparts");
}
prevnum = num;
prevstr = str;
started = true;
}
return true;
}
static bool test_tostring1()
{
TEST_EQUAL(str(0), "0");
TEST_EQUAL(str(0u), "0");
TEST_EQUAL(str(1), "1");
TEST_EQUAL(str(1u), "1");
TEST_EQUAL(str(9), "9");
TEST_EQUAL(str(9u), "9");
TEST_EQUAL(str(10), "10");
TEST_EQUAL(str(10u), "10");
TEST_EQUAL(str(-1), "-1");
TEST_EQUAL(str(-9), "-9");
TEST_EQUAL(str(-10), "-10");
TEST_EQUAL(str(0xffffffff), "4294967295");
TEST_EQUAL(str(0x7fffffff), "2147483647");
TEST_EQUAL(str(0x7fffffffu), "2147483647");
TEST_EQUAL(str(-0x7fffffff), "-2147483647");
#ifdef __WIN32__
/* Test the 64 bit integer conversion to string.
* (Currently only exists for windows.)
*/
TEST_EQUAL(str(10ll), "10");
TEST_EQUAL(str(-10ll), "-10");
TEST_EQUAL(str(0x200000000ll), "8589934592");
// We don't currently have an "unsigned long long" version since it's not required
// anywhere in the library.
// TEST_EQUAL(str(0x200000000ull), "8589934592");
#endif
return true;
}
/// Regression test for bug fixed in 1.1.1.
static bool test_strbool1()
{
TEST_EQUAL(str(true), "1");
TEST_EQUAL(str(false), "0");
return true;
}
static bool test_closefrom1()
{
#ifndef __WIN32__
// Simple test.
closefrom(8);
// Simple test when there are definitely no fds to close.
closefrom(42);
// Test passing a really high threshold.
closefrom(INT_MAX);
// Open some fds and check the expected ones are closed.
TEST_EQUAL(dup2(1, 14), 14);
TEST_EQUAL(dup2(1, 15), 15);
TEST_EQUAL(dup2(1, 18), 18);
closefrom(15);
TEST_EQUAL(close(14), 0);
TEST(close(15) == -1 && errno == EBADF);
TEST(close(18) == -1 && errno == EBADF);
#endif
return true;
}
static const test_desc tests[] = {
TESTCASE(simple_exceptions_work1),
TESTCASE(class_exceptions_work1),
TESTCASE(resolverelativepath1),
TESTCASE(serialisedouble1),
#ifdef XAPIAN_HAS_REMOTE_BACKEND
TESTCASE(serialiselength1),
TESTCASE(serialiselength2),
TESTCASE(serialiseerror1),
#endif
TESTCASE(log2),
TESTCASE(sortableserialise1),
TESTCASE(tostring1),
TESTCASE(strbool1),
TESTCASE(closefrom1),
END_OF_TESTCASES
};
int main(int argc, char **argv)
try {
test_driver::parse_command_line(argc, argv);
return test_driver::run(tests);
} catch (const char * e) {
cout << e << endl;
return 1;
}
|