d6a2f172d6
Add simple test which builds Hello World programs for both C and C++. Build options provided by default rpm macro. Based on https://github.com/CentOS/sig-core-t_functional/tree/master/tests/p_annobin Gating is not enabled yet, so the test will not be blocking.
6 lines
72 B
C
6 lines
72 B
C
#include <stdio.h>
|
|
int main() {
|
|
printf("Hello World!\n");
|
|
return 0;
|
|
}
|