summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-07-02 20:01:42 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-07-02 20:01:42 +0000
commitee2e658f0ded6abf879128471f7509e735361966 (patch)
tree010ca0f679afe478c69c13fe9f4c5eb23cf9b709 /tests
parentc68eb5b4ea08b7c08df0d05901dbb050f8166eef (diff)
downloadATCD-ee2e658f0ded6abf879128471f7509e735361966.tar.gz
don't blindly unlink the output file, because VxWorks gets upset if it didn't already exist
Diffstat (limited to 'tests')
-rw-r--r--tests/test_config.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/test_config.h b/tests/test_config.h
index c932eea197a..6fc79f24f7d 100644
--- a/tests/test_config.h
+++ b/tests/test_config.h
@@ -178,10 +178,6 @@ ACE_Test_Output::set_output (const char *filename, int append)
if (append)
flags |= ios::app;
- // VxWorks won't open the file if it already exists. It
- // shouldn't hurt to delete it on all platforms.
- ACE_OS::unlink (temp);
-
this->output_file_.open (temp, flags);
if (this->output_file_.bad ())
return -1;