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.cxx Normal file
View File

@ -0,0 +1,7 @@
#include <iostream>
int main( int argc, char * argv[] )
{
std::cout << "Hello cross-compilation world!" << std::endl;
return 0;
}