mirror of
https://github.com/AuxXxilium/eudev.git
synced 2025-01-18 10:07:46 +07:00
test: update test-engine.c to work again
This commit is contained in:
parent
e1d680ad55
commit
35374c804d
@ -36,9 +36,9 @@ int main(int argc, char *argv[]) {
|
||||
assert_se(manager_new(MANAGER_INIT, false, &m) >= 0);
|
||||
|
||||
printf("Load1:\n");
|
||||
assert_se(manager_load_unit(m, "a.service", NULL, &a) == 0);
|
||||
assert_se(manager_load_unit(m, "b.service", NULL, &b) == 0);
|
||||
assert_se(manager_load_unit(m, "c.service", NULL, &c) == 0);
|
||||
assert_se(manager_load_unit(m, "a.service", NULL, &a) >= 0);
|
||||
assert_se(manager_load_unit(m, "b.service", NULL, &b) >= 0);
|
||||
assert_se(manager_load_unit(m, "c.service", NULL, &c) >= 0);
|
||||
manager_dump_units(m, stdout, "\t");
|
||||
|
||||
printf("Test1: (Trivial)\n");
|
||||
@ -47,8 +47,8 @@ int main(int argc, char *argv[]) {
|
||||
|
||||
printf("Load2:\n");
|
||||
manager_clear_jobs(m);
|
||||
assert_se(manager_load_unit(m, "d.service", NULL, &d) == 0);
|
||||
assert_se(manager_load_unit(m, "e.service", NULL, &e) == 0);
|
||||
assert_se(manager_load_unit(m, "d.service", NULL, &d) >= 0);
|
||||
assert_se(manager_load_unit(m, "e.service", NULL, &e) >= 0);
|
||||
manager_dump_units(m, stdout, "\t");
|
||||
|
||||
printf("Test2: (Cyclic Order, Unfixable)\n");
|
||||
@ -64,7 +64,7 @@ int main(int argc, char *argv[]) {
|
||||
manager_dump_jobs(m, stdout, "\t");
|
||||
|
||||
printf("Load3:\n");
|
||||
assert_se(manager_load_unit(m, "g.service", NULL, &g) == 0);
|
||||
assert_se(manager_load_unit(m, "g.service", NULL, &g) >= 0);
|
||||
manager_dump_units(m, stdout, "\t");
|
||||
|
||||
printf("Test5: (Colliding transaction, fail)\n");
|
||||
@ -86,7 +86,7 @@ int main(int argc, char *argv[]) {
|
||||
manager_dump_jobs(m, stdout, "\t");
|
||||
|
||||
printf("Load4:\n");
|
||||
assert_se(manager_load_unit(m, "h.service", NULL, &h) == 0);
|
||||
assert_se(manager_load_unit(m, "h.service", NULL, &h) >= 0);
|
||||
manager_dump_units(m, stdout, "\t");
|
||||
|
||||
printf("Test10: (Unmeargable job type of auxiliary job, fail)\n");
|
||||
|
@ -1,4 +1,7 @@
|
||||
[Meta]
|
||||
[Unit]
|
||||
Description=A
|
||||
Requires=b.service
|
||||
Before=b.service
|
||||
|
||||
[Service]
|
||||
ExecStart=/bin/true
|
||||
|
@ -1,3 +1,6 @@
|
||||
[Meta]
|
||||
[Unit]
|
||||
Description=B
|
||||
Wants=f.service
|
||||
|
||||
[Service]
|
||||
ExecStart=/bin/true
|
||||
|
@ -1,3 +1,6 @@
|
||||
[Meta]
|
||||
[Unit]
|
||||
Description=C
|
||||
Requires=a.service
|
||||
|
||||
[Service]
|
||||
ExecStart=/bin/true
|
||||
|
@ -1,5 +1,8 @@
|
||||
[Meta]
|
||||
[Unit]
|
||||
Description=D:Cyclic
|
||||
After=b.service
|
||||
Before=a.service
|
||||
Requires=a.service
|
||||
|
||||
[Service]
|
||||
ExecStart=/bin/true
|
||||
|
@ -1,5 +1,8 @@
|
||||
[Meta]
|
||||
[Unit]
|
||||
Description=E:Cyclic
|
||||
After=b.service
|
||||
Before=a.service
|
||||
Wants=a.service
|
||||
|
||||
[Service]
|
||||
ExecStart=/bin/true
|
||||
|
@ -1,2 +1,5 @@
|
||||
[Meta]
|
||||
[Unit]
|
||||
Description=F
|
||||
|
||||
[Service]
|
||||
ExecStart=/bin/true
|
||||
|
@ -1,3 +1,6 @@
|
||||
[Meta]
|
||||
[Unit]
|
||||
Description=G
|
||||
Conflicts=e.service
|
||||
|
||||
[Service]
|
||||
ExecStart=/bin/true
|
||||
|
@ -1,3 +1,6 @@
|
||||
[Meta]
|
||||
[Unit]
|
||||
Description=H
|
||||
Wants=g.service
|
||||
|
||||
[Service]
|
||||
ExecStart=/bin/true
|
||||
|
Loading…
Reference in New Issue
Block a user