[svn:parrot] r39901 - trunk/t/steps

fperrad at svn.parrot.org fperrad at svn.parrot.org
Mon Jul 6 22:55:27 UTC 2009


Author: fperrad
Date: Mon Jul  6 22:55:24 2009
New Revision: 39901
URL: https://trac.parrot.org/parrot/changeset/39901

Log:
[config] update tests after r39899

Modified:
   trunk/t/steps/gen_config_h-01.t

Modified: trunk/t/steps/gen_config_h-01.t
==============================================================================
--- trunk/t/steps/gen_config_h-01.t	Mon Jul  6 18:14:28 2009	(r39900)
+++ trunk/t/steps/gen_config_h-01.t	Mon Jul  6 22:55:24 2009	(r39901)
@@ -1,5 +1,5 @@
 #! perl
-# Copyright (C) 2007, Parrot Foundation.
+# Copyright (C) 2007-2009, Parrot Foundation.
 # $Id$
 # gen_config_h-01.t
 
@@ -39,11 +39,10 @@
 my $step = test_step_constructor_and_description($conf);
 ok(-f $step->{templates}->{config_h}, "Template for config_h located");
 ok(-f $step->{templates}->{feature_h}, "Template for feature_h located");
+ok(-f $step->{templates}->{has_header_h}, "Template for has_header_h located");
 
 $conf->replenish($serialized);
 
-########## --define; _handle_define_option() ##########
-
 ($args, $step_list_ref) = process_options( {
     argv => [ q{--define=inet_aton} ],
     mode => q{configure},
@@ -52,21 +51,6 @@
 $conf->options->set( %{$args} );
 $step = test_step_constructor_and_description($conf);
 
-my $cwd = cwd();
-{
-    my $tdir = tempdir( CLEANUP => 1 );
-    chdir $tdir or croak "Unable to change to temporary directory";
-    my $hh = "has_header.h";
-    open( my $HH, ">", "$hh.tmp" )
-        or die "Can't open has_header.h: $!";
-    gen::config_h::_handle_define_option( $conf, $HH );
-    close $HH or die "Can't close temp file: $!";
-    my $text = _slurp("$hh.tmp");
-    like($text, qr/#define PARROT_DEF_INET_ATON 1/s,
-        "Got expected define");
-    chdir $cwd or croak "Unable to change back to starting directory";
-}
-
 pass("Completed all tests in $0");
 
 ################### DOCUMENTATION ###################


More information about the parrot-commits mailing list