~ubuntu-branches/ubuntu/natty/augeas/natty

« back to all changes in this revision

Viewing changes to tests/test-load.c

  • Committer: Bazaar Package Importer
  • Author(s): Raphaël Pinson
  • Date: 2011-02-24 09:32:22 UTC
  • mfrom: (1.2.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20110224093222-bfd4fkm6envek6ys
Tags: 0.8.0-0ubuntu1
* New upstream release.
* Remove obsolete ruby Build-Depend.
* Build PDF docs and add them to augeas-doc.
* Build-Depend on texlive-latex-base to build PDF docs.
* Install txt doc files in augeas-doc.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include "cutest.h"
28
28
#include "internal.h"
29
29
 
30
 
#define CuAssertPositive(tc, n) CuAssertTrue(tc, (n) > 0)
31
 
#define CuAssertZero(tc, n) CuAssertIntEquals(tc, 0, (n))
32
 
#define CuAssertRetSuccess(tc, n) CuAssertIntEquals(tc, 0, (n))
33
 
 
34
30
static const char *abs_top_srcdir;
35
31
static const char *abs_top_builddir;
36
32
static char *root = NULL;
488
484
    char *output = NULL;
489
485
    CuSuite* suite = CuSuiteNew();
490
486
    CuSuiteSetup(suite, NULL, NULL);
491
 
 
492
487
    SUITE_ADD_TEST(suite, testDefault);
493
488
    SUITE_ADD_TEST(suite, testNoLoad);
494
489
    SUITE_ADD_TEST(suite, testNoAutoload);