diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-02 20:01:42 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-02 20:01:42 +0000 |
commit | ee2e658f0ded6abf879128471f7509e735361966 (patch) | |
tree | 010ca0f679afe478c69c13fe9f4c5eb23cf9b709 /tests | |
parent | c68eb5b4ea08b7c08df0d05901dbb050f8166eef (diff) | |
download | ATCD-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.h | 4 |
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; |