~jamesodhunt/ubuntu/saucy/upstart/1.9.1

« back to all changes in this revision

Viewing changes to init/tests/test_job_process.c

  • Committer: James Hunt
  • Date: 2013-06-28 15:57:37 UTC
  • mfrom: (1436.2.1)
  • Revision ID: james.hunt@ubuntu.com-20130628155737-8bskclzrhmjvpm6e
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
#include "blocked.h"
61
61
#include "conf.h"
62
62
#include "errors.h"
63
 
#include "test_util.h"
 
63
#include "test_util_common.h"
64
64
 
65
65
#define EXPECTED_JOB_LOGDIR       "/var/log/upstart"
66
66
#define TEST_SHELL                "/bin/sh"
166
166
        return 1;
167
167
}
168
168
 
169
 
static int
170
 
strcmp_compar (const void *a, const void *b)
171
 
{
172
 
        return strcmp(*(char * const *)a, *(char * const *)b);
173
 
}
174
 
 
175
169
static void
176
170
child (enum child_tests  test,
177
171
       const char       *filename)