[svn:parrot] r39416 - trunk/t/compilers/imcc/syn

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Fri Jun 5 23:43:47 UTC 2009


Author: jkeenan
Date: Fri Jun  5 23:43:47 2009
New Revision: 39416
URL: https://trac.parrot.org/parrot/changeset/39416

Log:
Delete DIR => cwd() key-value pair from one instance of create_tempfile(), in hope that this clears up a testing problem on Cygwin.

Modified:
   trunk/t/compilers/imcc/syn/file.t

Modified: trunk/t/compilers/imcc/syn/file.t
==============================================================================
--- trunk/t/compilers/imcc/syn/file.t	Fri Jun  5 23:42:28 2009	(r39415)
+++ trunk/t/compilers/imcc/syn/file.t	Fri Jun  5 23:43:47 2009	(r39416)
@@ -33,7 +33,8 @@
 
 my $ended_ok = 0;
 
-my ($FOO, $temp_pasm) = create_tempfile( SUFFIX => '.pasm', DIR => cwd(), UNLINK => 1 );
+#my ($FOO, $temp_pasm) = create_tempfile( SUFFIX => '.pasm', DIR => cwd(), UNLINK => 1 );
+my ($FOO, $temp_pasm) = create_tempfile( SUFFIX => '.pasm', UNLINK => 1 );
 
 print $FOO <<'ENDF';
   .macro_const BAR 42


More information about the parrot-commits mailing list