aboutsummaryrefslogtreecommitdiff
path: root/tests/hello_cxx11.cpp
diff options
context:
space:
mode:
authorJukka Jylänki <jujjyl@gmail.com>2013-02-01 23:13:17 +0200
committerJukka Jylänki <jujjyl@gmail.com>2013-02-01 23:13:17 +0200
commitff8c8fd1ba0ab0d49029b09f0c083cf47554da56 (patch)
treeadd32cb59563046703d1d1824217807e2e2a998b /tests/hello_cxx11.cpp
parent9dd7e94ecd16a6b4200a276880f378c3e155c212 (diff)
Add a unit test that checks that user is able to specify a custom -std= flag on the command line.
Diffstat (limited to 'tests/hello_cxx11.cpp')
-rw-r--r--tests/hello_cxx11.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/hello_cxx11.cpp b/tests/hello_cxx11.cpp
new file mode 100644
index 00000000..cfce039a
--- /dev/null
+++ b/tests/hello_cxx11.cpp
@@ -0,0 +1,10 @@
+#include <stdio.h>
+
+#if __cplusplus != 201103L
+#error This file should be compiled with -std=c++11!
+#endif
+
+int main( int argc, const char *argv[] ) {
+ printf("Hello world!\\n");
+ return 0;
+}