3 # Script to setup test script symlinks, since CVS can't store them
11 die "cannot find driver file '$DRIVER'" unless -f $DRIVER;
12 die "cannot find tests file '$TESTS'" unless -f $TESTS;
16 my $th = IO::File->new($TESTS, 'r')
17 or die "cannot open tests file '$TESTS': $!";
24 print "symlink $DRIVER $t\n";
25 eval { symlink $DRIVER, $t } or die "symlink $DRIVER, $t failed: $!";