From 6e72430a585625115baa8e27dfd8a0205ca19be0 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 16 Oct 2011 00:46:38 -0400 Subject: [PATCH] Unit Tests - Corrected cleanup code for bug.hang.t which was removing the wrong config file. --- test/bug.hang.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/bug.hang.t b/test/bug.hang.t index cba8e86ab..e92f6980e 100755 --- a/test/bug.hang.t +++ b/test/bug.hang.t @@ -70,14 +70,14 @@ if ($@ eq "alarm\n") } # Cleanup. -unlink qw(shadow.txt pending.data completed.data undo.data backlog.data synch.key bug.rc); +unlink qw(shadow.txt pending.data completed.data undo.data backlog.data synch.key hang.rc); ok (! -r 'shadow.txt' && ! -r 'pending.data' && ! -r 'completed.data' && ! -r 'undo.data' && ! -r 'backlog.data' && ! -r 'synch.key' && - ! -r 'bug.rc', 'Cleanup'); + ! -r 'hang.rc', 'Cleanup'); exit 0;