File: test_util.h

package info (click to toggle)
upstart 1.11-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 12,988 kB
  • ctags: 2,100
  • sloc: ansic: 67,932; sh: 12,339; python: 1,718; makefile: 1,093; xml: 162; sed: 16
file content (21 lines) | stat: -rw-r--r-- 437 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef TEST_UTIL_H
#define TEST_UTIL_H

#include "event_operator.h"
#include "conf.h"
#include "job_class.h"
#include "session.h"
#include "log.h"

/* Prototypes */
int event_operator_diff (EventOperator *a, EventOperator *b)
	__attribute__ ((warn_unused_result));

Session *session_from_chroot (const char *chroot)
	__attribute__ ((warn_unused_result));

void ensure_env_clean (void);

void clean_env (void);

#endif /* TEST_UTIL_H */