blob: 2ed9059dcf519654233aca11457e9e413da5233d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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);
|