Stdout output-driver with test
This commit is contained in:
parent
131a8b9501
commit
3ec6498e83
3 changed files with 101 additions and 1 deletions
33
test/t_stdout.c
Normal file
33
test/t_stdout.c
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "../src/output/output.h"
|
||||
#include "../src/notify/event.h"
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
|
||||
int r;
|
||||
notify_event ev;
|
||||
|
||||
ev.path = "/home/kalle/bilder";
|
||||
ev.filename = "kalle.jpg";
|
||||
ev.type = NOTIFY_CREATE;
|
||||
|
||||
output_init(NULL);
|
||||
|
||||
r = output_process(&ev);
|
||||
|
||||
ev.type = NOTIFY_DELETE;
|
||||
|
||||
r = output_process(&ev);
|
||||
|
||||
if (r != 0)
|
||||
printf("Error: %s\n", output_error(r));
|
||||
|
||||
output_exit();
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in a new issue