xref: /kvm-unit-tests/x86/dummy.c (revision 14b54ed754c8a8cae7a22895e4a0b745a3227a4b)
1 #include "libcflat.h"
2 
main(int argc,char ** argv)3 int main(int argc, char **argv)
4 {
5 	/*
6 	 * scripts/runtime.bash uses this test as a canary to determine if the
7 	 * basic setup is functional.  Print a magic string to let runtime.bash
8 	 * know that all is well.
9 	 */
10 	printf("Dummy Hello World!");
11 	return 0;
12 }
13