summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xregress/base/lock.pl6
-rwxr-xr-xregress/header/message_id.pl6
-rw-r--r--regress/simulation/Makefile4
3 files changed, 8 insertions, 8 deletions
diff --git a/regress/base/lock.pl b/regress/base/lock.pl
index 93a81d71..8ed3cb4f 100755
--- a/regress/base/lock.pl
+++ b/regress/base/lock.pl
@@ -1,12 +1,12 @@
#!/usr/local/bin/perl
#
-# $FML: lock.pl,v 1.3 2001/02/20 08:30:12 fukachan Exp $
+# $FML: lock.pl,v 1.4 2001/06/17 09:00:30 fukachan Exp $
#
use File::SimpleLock;
my $lockobj = new File::SimpleLock;
-my $r = $lockobj->lock( { file => '/tmp/a' });
+my $r = $lockobj->lock( { file => '/tmp/fml5' });
if ($r) {
print STDERR "lock ($$) ... ok\n";
}
@@ -16,7 +16,7 @@ else {
sleep 1;
-$r = $lockobj->unlock( { file => '/tmp/a' });
+$r = $lockobj->unlock( { file => '/tmp/fml5' });
if ($r) {
print STDERR "unlock ... ok\n";
}
diff --git a/regress/header/message_id.pl b/regress/header/message_id.pl
index 836306c3..59f31943 100755
--- a/regress/header/message_id.pl
+++ b/regress/header/message_id.pl
@@ -1,6 +1,6 @@
#!/usr/local/bin/perl
#
-# $FML: message_id.pl,v 1.1 2001/04/15 05:05:06 fukachan Exp $
+# $FML: message_id.pl,v 1.2 2001/04/15 13:28:46 fukachan Exp $
#
use strict;
@@ -28,8 +28,8 @@ sub test
my $dir;
chop($dir = `mktemp -d -t /tmp`);
- $dir = $dir || "/tmp/a";
- -d $dir || system "mkdir /tmp/a";
+ $dir = $dir || "/tmp/fml5";
+ -d $dir || system "mkdir /tmp/fml5";
$obj->open_cache( { directory => $dir } );
my $key = time . "-$$";
diff --git a/regress/simulation/Makefile b/regress/simulation/Makefile
index 0bb2e7d0..4085eb89 100644
--- a/regress/simulation/Makefile
+++ b/regress/simulation/Makefile
@@ -1,5 +1,5 @@
#
-# $FML: Makefile,v 1.39 2001/06/10 10:25:10 fukachan Exp $
+# $FML: Makefile,v 1.40 2001/08/05 03:28:47 fukachan Exp $
#
all: link
@@ -65,7 +65,7 @@ diff:
test:
@ echo "* IO::* class test"
@ apply perl IO/t/*pl
- @ test -d /tmp/a || mkdir /tmp/a
+ @ test -d /tmp/fml5 || mkdir /tmp/fml5
@ make -f ../base/Makefile
@ echo "* errormails"
@ (cd ../errormails; make check)