~brianaker/libmemcached/gear-clean

« back to all changes in this revision

Viewing changes to tests/libmemcached-1.0/sasl.cc

  • Committer: Brian Aker
  • Date: 2013-01-08 01:03:28 UTC
  • mto: (1136.1.1 1.0)
  • mto: This revision was merged to the branch mainline in revision 1131.
  • Revision ID: brian@tangent.org-20130108010328-vmzuzj9j753k3fdp
Update yatl.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
 
48
48
static test_return_t pre_sasl(memcached_st *)
49
49
{
50
 
  if (LIBMEMCACHED_WITH_SASL_SUPPORT == 0)
51
 
  {
52
 
    return TEST_SKIPPED;
53
 
  }
 
50
  SKIP_IF(true);
 
51
#if 0
 
52
  SKIP_IF_(true, "currently we are not testing sasl support");
 
53
#endif
 
54
  SKIP_IF(LIBMEMCACHED_WITH_SASL_SUPPORT == 0);
54
55
 
55
56
  return TEST_SUCCESS;
56
57
}