summaryrefslogtreecommitdiff
path: root/unittests/autotestscripts/test_error_reporting.pl
blob: f705f9cdb332d4f68436937486a581a6a49f4093 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! perl
$errfname="//fileserver/user/cgreen/force_an_error.txt";

if (-e $errfname )
  {
	unlink $errfname;
	open(ERROUT,">errors.txt") || die "huh - can't write";
	{
	  print ERROUT "This is not an error - its just a test of the error script system.\n";
	  close ERROUT;
	}

  }