First small tests for llvmc2.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50734 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/LLVMC/together.cpp b/test/LLVMC/together.cpp
new file mode 100644
index 0000000..62ff821
--- /dev/null
+++ b/test/LLVMC/together.cpp
@@ -0,0 +1,10 @@
+// Check that we can compile files of different types together.
+// TOFIX: compiling files with same names should work.
+// RUN: llvmc2 %s %p/together1.c -o %t
+// RUN: ./%t | grep hello
+
+extern "C" void test();
+
+int main() {
+  test();
+}