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