libreport/tests/library-smoke.sh

12 lines
225 B
Bash
Raw Normal View History

#!/usr/bin/bash
2022-01-06 16:08:54 +00:00
gcc -x c -o smoke_test -lreport -Wno-implicit-function-declaration - <<EOF
#include <stdio.h>
2022-01-06 16:08:54 +00:00
int main(void) {
libreport_init();
printf("libreport initialized OK\n");
return 0;
2022-01-06 16:08:54 +00:00
}
EOF
./smoke_test