about summary refs log tree commit diff homepage
path: root/test/CXX/symex/libc++/cout.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/CXX/symex/libc++/cout.cpp')
-rw-r--r--test/CXX/symex/libc++/cout.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/CXX/symex/libc++/cout.cpp b/test/CXX/symex/libc++/cout.cpp
new file mode 100644
index 00000000..2539b67f
--- /dev/null
+++ b/test/CXX/symex/libc++/cout.cpp
@@ -0,0 +1,9 @@
+// RUN: sh %S/compile_with_libcxx.sh "%llvmgxx" "%s" "%S" "%t" "%klee" "%libcxx_include"
+
+#include <iostream>
+
+int main(int argc, char** args){
+  std::cout << "cout" << std::endl;
+  std::cerr << "cerr" << std::endl;
+  return 0;
+}