Author: jkeenan
Date: Sun Aug  3 19:53:24 2008
New Revision: 29987

Modified:
   trunk/t/configure/044-slurp_file.t

Log:
Was testing non-existence of file named 'foobar' -- but Parrot developers may 
very well have such a file lying around.  Generate file name from process ID 
instead.

Modified: trunk/t/configure/044-slurp_file.t
==============================================================================
--- trunk/t/configure/044-slurp_file.t  (original)
+++ trunk/t/configure/044-slurp_file.t  Sun Aug  3 19:53:24 2008
@@ -48,7 +48,7 @@
 }
 
 {
-    my $phony = q{foobar};
+    my $phony = $$;
     my $str;
     eval { $str = Parrot::BuildUtil::slurp_file($phony); };
     like(

Reply via email to