aboutsummaryrefslogtreecommitdiffstats
path: root/libtests/qtest
diff options
context:
space:
mode:
Diffstat (limited to 'libtests/qtest')
-rw-r--r--libtests/qtest/cxx11.test16
1 files changed, 16 insertions, 0 deletions
diff --git a/libtests/qtest/cxx11.test b/libtests/qtest/cxx11.test
new file mode 100644
index 00000000..5efbd87f
--- /dev/null
+++ b/libtests/qtest/cxx11.test
@@ -0,0 +1,16 @@
+#!/usr/bin/env perl
+require 5.008;
+use warnings;
+use strict;
+
+require TestDriver;
+
+my $td = new TestDriver('c++-11');
+
+$td->runtest("C++-11",
+ {$td->COMMAND => "cxx11"},
+ {$td->STRING => "assertions passed\n",
+ $td->EXIT_STATUS => 0},
+ $td->NORMALIZE_NEWLINES);
+
+$td->report(1);