summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2001-08-30 15:41:49 +0000
committerSteve Huston <shuston@riverace.com>2001-08-30 15:41:49 +0000
commit9b347671424343c406ebe58ee1fa36b49248c7ea (patch)
treebf00c8feefd208e85b318e911a32e2573ae194bd
parente3d39eb8d60fe25def959623ccc128b7b54d51d7 (diff)
downloadATCD-9b347671424343c406ebe58ee1fa36b49248c7ea.tar.gz
ChangeLogTag:Thu Aug 30 11:40:39 2001 Steve Huston <shuston@riverace.com>
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLogs/ChangeLog-02a6
-rw-r--r--ChangeLogs/ChangeLog-03a6
-rwxr-xr-xtests/run_test.pl3
4 files changed, 19 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c9a8edddba5..e22607c39bc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Thu Aug 30 11:40:39 2001 Steve Huston <shuston@riverace.com>
+
+ * tests/run_test.pl (run_program): Fixed the 'unlink' to get
+ all of a test's log files; prevents seeing previous sub-logs
+ from a test such as MEM_Stream_Test and falsely reporting errors.
+
Thu Aug 30 10:46:51 2001 Steve Huston <shuston@riverace.com>
* ace/High_Res_Timer.cpp (global_scale_factor ()): When checking for
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index c9a8edddba5..e22607c39bc 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,9 @@
+Thu Aug 30 11:40:39 2001 Steve Huston <shuston@riverace.com>
+
+ * tests/run_test.pl (run_program): Fixed the 'unlink' to get
+ all of a test's log files; prevents seeing previous sub-logs
+ from a test such as MEM_Stream_Test and falsely reporting errors.
+
Thu Aug 30 10:46:51 2001 Steve Huston <shuston@riverace.com>
* ace/High_Res_Timer.cpp (global_scale_factor ()): When checking for
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index c9a8edddba5..e22607c39bc 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,9 @@
+Thu Aug 30 11:40:39 2001 Steve Huston <shuston@riverace.com>
+
+ * tests/run_test.pl (run_program): Fixed the 'unlink' to get
+ all of a test's log files; prevents seeing previous sub-logs
+ from a test such as MEM_Stream_Test and falsely reporting errors.
+
Thu Aug 30 10:46:51 2001 Steve Huston <shuston@riverace.com>
* ace/High_Res_Timer.cpp (global_scale_factor ()): When checking for
diff --git a/tests/run_test.pl b/tests/run_test.pl
index 4f21e768253..d937bdaba64 100755
--- a/tests/run_test.pl
+++ b/tests/run_test.pl
@@ -99,8 +99,7 @@ sub run_program ($)
{
my $program = shift;
- local $all_logs = "log/".$program."*.log";
- unlink $all_logs;
+ unlink <log/$program*.log>;
unlink "core";
my $P = new PerlACE::Process ($program);