Sha256: fee168f654055d92c37185026a162ee71d659037ab229ef7ae97dcd4c1656ee3

Contents?: true

Size: 483 Bytes

Versions: 2

Compression:

Stored size: 483 Bytes

Contents

/* uTest Copyright (C) 2011 Data Differential, http://datadifferential.com/
 *
 * Use and distribution licensed under the BSD license.  See
 * the COPYING file in the parent directory for full text.
 */

#pragma once

enum test_return_t {
  TEST_SUCCESS= 0, /* Backwards compatibility */
  TEST_FAILURE,
  TEST_MEMORY_ALLOCATION_FAILURE,
  TEST_SKIPPED,
  TEST_FATAL // Collection should not be continued
};


#define test_failed(__test_return_t) ((__test_return_t) != TEST_SUCCESS)

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
couchbase-memcached-1.2.9 ext/libmemcached-0.50/libtest/error.h
couchbase-memcached-1.2.8 ext/libmemcached-0.50/libtest/error.h