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