Lines Matching refs:hello
28 atf_test_case hello
30 atf_set "descr" "compile and run \"hello world\""
36 atf_set "descr" "compile and run \"hello world\" with profiling option"
42 atf_set "descr" "compile and run PIC \"hello world\""
48 atf_set "descr" "compile and run position independent (PIE) \"hello world\""
54 atf_set "descr" "compile and run \"hello world\" for/in netbsd32 emulation"
62 int main(void) {printf("hello world\n");exit(0);}
64 atf_check -s exit:0 -o ignore -e ignore cc -o hello test.c
65 atf_check -s exit:0 -o inline:"hello world\n" ./hello
78 int main(void) {printf("hello world\n");exit(0);}
80 atf_check -s exit:0 -o ignore -e ignore cc -static -o hello -pg test.c
81 atf_check -s exit:0 -o inline:"hello world\n" ./hello
83 atf_check -s exit:0 -o inline:"hello world\n" ./hello2
94 int callpic(void) {printf("hello world\n");return 0;}
100 cc -o hello test.c -L. -ltest
103 atf_check -s exit:0 -o inline:"hello world\n" ./hello
114 int main(void) {printf("hello world\n");exit(0);}
116 atf_check -s exit:0 -o ignore -e ignore cc -fpie -pie -o hello test.c
117 atf_check -s exit:0 -o inline:"hello world\n" ./hello
136 int main(void) {printf("hello world\n");exit(0);}
149 atf_check -s exit:0 -o inline:"hello world\n" ./hello32
155 int main(void) {printf("hello static world\n");exit(0);}
157 atf_check -s exit:0 -o ignore -e ignore cc -o hello -m32 \
159 atf_check -s exit:0 -o inline:"hello static world\n" ./hello
165 int main(void) {printf("hello 32bit profile world\n");exit(0);}
167 atf_check -s exit:0 -o ignore -e ignore cc -o hello -m32 \
169 atf_check -s exit:0 -o inline:"hello 32bit profile world\n" ./hello
175 atf_add_test_case hello