Add Fedora CI tests
This commit is contained in:
parent
78a229b5d5
commit
fc137a26a0
31
tests/samples/fstrm-sample-program.c
Normal file
31
tests/samples/fstrm-sample-program.c
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
#include <fstrm.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
int
|
||||||
|
main(void)
|
||||||
|
{
|
||||||
|
const char *file_path = "/tmp/output.fs";
|
||||||
|
struct fstrm_file_options *fopt;
|
||||||
|
struct fstrm_iothr *iothr;
|
||||||
|
struct fstrm_writer *writer;
|
||||||
|
|
||||||
|
fopt = fstrm_file_options_init();
|
||||||
|
fstrm_file_options_set_file_path(fopt, file_path);
|
||||||
|
writer = fstrm_file_writer_init(fopt, NULL);
|
||||||
|
if (!writer) {
|
||||||
|
fprintf(stderr, "Error: fstrm_file_writer_init() failed.\n");
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
|
||||||
|
iothr = fstrm_iothr_init(NULL, &writer);
|
||||||
|
if (!iothr) {
|
||||||
|
fprintf(stderr, "Error: fstrm_iothr_init() failed.\n");
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
|
||||||
|
fstrm_iothr_destroy(&iothr);
|
||||||
|
fstrm_file_options_destroy(&fopt);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
15
tests/tests.yml
Normal file
15
tests/tests.yml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
- hosts: localhost
|
||||||
|
roles:
|
||||||
|
- role: standard-test-basic
|
||||||
|
tags:
|
||||||
|
- classic
|
||||||
|
required_packages:
|
||||||
|
- fstrm-devel
|
||||||
|
- gcc
|
||||||
|
tests:
|
||||||
|
- pkg-config:
|
||||||
|
dir: .
|
||||||
|
run: pkg-config --modversion libfstrm
|
||||||
|
- build-sample-program:
|
||||||
|
dir: samples
|
||||||
|
run: gcc -Wall -Wextra $(pkg-config --cflags --libs libfstrm) -o /dev/null fstrm-sample-program.c
|
Loading…
Reference in New Issue
Block a user