tagged release 0.6.4
[parrot.git] / t / steps / auto_gcc-08.t
blob02f8cfb703df2c57d58558ba20f2770fed045d7a
1 #! perl
2 # Copyright (C) 2007, The Perl Foundation.
3 # $Id$
4 # auto_gcc-08.t
6 use strict;
7 use warnings;
8 use Test::More tests =>  13;
9 use Carp;
10 use lib qw( lib t/configure/testlib );
11 use_ok('config::init::defaults');
12 use_ok('config::auto::gcc');
13 use Parrot::Configure;
14 use Parrot::Configure::Options qw( process_options );
15 use Parrot::Configure::Test qw( test_step_thru_runstep);
16 use IO::CaptureOutput qw | capture |;
18 my $args = process_options( {
19     argv            => [],
20     mode            => q{configure},
21 } );
23 my $conf = Parrot::Configure->new();
25 test_step_thru_runstep($conf, q{init::defaults}, $args);
27 my ($task, $step_name, $step, $ret);
28 my $pkg = q{auto::gcc};
30 $conf->add_steps($pkg);
31 $conf->options->set(%{$args});
32 $task = $conf->steps->[-1];
33 $step_name   = $task->step;
35 $step = $step_name->new();
36 ok(defined $step, "$step_name constructor returned defined value");
37 isa_ok($step, $step_name);
41     my $rv;
42     my $stdout;
43     my $gnucref = {};
44     $gnucref->{__GNUC__} = q{123};
45     $gnucref->{__GNUC_MINOR__} = q{456};
46     capture ( sub {$rv = $step->_evaluate_gcc($conf, $gnucref) }, \$stdout);
47     ok($rv, "_evaluate_gcc() returned true value");
48     ok(defined $conf->data->get( 'gccversion' ),
49         "gccversion defined as expected");
50     is($conf->data->get( 'gccversion' ), q{123.456},
51         "Got expected value for gccversion");
52     is($step->result(), q{yes}, "Got expected result");
56 pass("Completed all tests in $0");
58 ################### DOCUMENTATION ###################
60 =head1 NAME
62 auto_gcc-08.t - test config::auto::gcc
64 =head1 SYNOPSIS
66     % prove t/steps/auto_gcc-08.t
68 =head1 DESCRIPTION
70 The files in this directory test functionality used by F<Configure.pl>.
72 The tests in this file test subroutines exported by config::auto::gcc.
74 =head1 AUTHOR
76 James E Keenan
78 =head1 SEE ALSO
80 config::auto::gcc, F<Configure.pl>.
82 =cut
84 # Local Variables:
85 #   mode: cperl
86 #   cperl-indent-level: 4
87 #   fill-column: 100
88 # End:
89 # vim: expandtab shiftwidth=4: