test: Add a script to test the toolchain.

This commit is contained in:
Matt McCormick
2016-03-03 21:04:20 -05:00
parent 19dc7051ea
commit a856edc56c
3 changed files with 122 additions and 0 deletions

7
test/C/hello.c Normal file
View File

@ -0,0 +1,7 @@
#include <stdio.h>
int main(int argc, char *argv[])
{
printf("Hello cross-compilation world!\n");
return 0;
}