~oleksiyk/gearmand/mysql

« back to all changes in this revision

Viewing changes to libtest/unittest.cc

Merge of all autoconf fix'able issues.

Show diffs side-by-side

added added

removed removed

Lines of Context:
465
465
 
466
466
static test_return_t wait_services_BINARY(void *)
467
467
{
 
468
  test_skip(0, access("/etc/services", R_OK ));
 
469
 
468
470
  const char *args[]= { "--quiet", "/etc/services", 0 };
469
471
 
470
472
  test_compare(EXIT_SUCCESS, exec_cmdline("libtest/wait", args, true));
474
476
 
475
477
static test_return_t wait_services_BINARY2(void *)
476
478
{
 
479
  test_skip(0, access("/etc/services", R_OK ));
 
480
 
477
481
  const char *args[]= { "/etc/services", 0 };
478
482
 
479
483
  test_compare(EXIT_SUCCESS, exec_cmdline("libtest/wait", args, true));
483
487
 
484
488
static test_return_t application_wait_services_BINARY2(void *)
485
489
{
 
490
  test_skip(0, access("/etc/services", R_OK ));
 
491
 
486
492
  libtest::Application("libtest/wait", true);
487
493
  const char *args[]= { "/etc/services", 0 };
488
494