test: hook up more tests with make check

This commit is contained in:
Lennart Poettering 2012-07-13 13:50:39 +02:00
parent b7def68494
commit 95ea1b90cc
3 changed files with 13 additions and 2 deletions

View File

@ -994,7 +994,8 @@ noinst_PROGRAMS += \
TESTS += \
test-job-type \
test-env-replace \
test-strv
test-strv \
test-unit-name
test_engine_SOURCES = \
src/test/test-engine.c
@ -2333,6 +2334,11 @@ noinst_PROGRAMS += \
test-journal-match \
test-journal-stream
TESTS += \
test-journal
test-journal-match \
test-journal-stream
pkginclude_HEADERS += \
src/systemd/sd-journal.h \
src/systemd/sd-messages.h

View File

@ -2,3 +2,4 @@ src/hostname/org.freedesktop.hostname1.policy.in
src/locale/org.freedesktop.locale1.policy.in
src/login/org.freedesktop.login1.policy.in
src/timedate/org.freedesktop.timedate1.policy.in
src/core/org.freedesktop.systemd1.policy.in

View File

@ -34,10 +34,12 @@ int main(int argc, char *argv[]) {
static const char test[] = "test", test2[] = "test2";
Object *o;
uint64_t p;
char t[] = "/tmp/journal-XXXXXX";
log_set_max_level(LOG_DEBUG);
unlink("test.journal");
assert_se(mkdtemp(t));
assert_se(chdir(t) >= 0);
assert_se(journal_file_open("test.journal", O_RDWR|O_CREAT, 0666, NULL, &f) == 0);
@ -116,5 +118,7 @@ int main(int argc, char *argv[]) {
log_error("Exiting...");
assert_se(rm_rf(t, false, true, false) >= 0);
return 0;
}