Remove assert(s.ok()) from ::DeleteFile

Summary:
DestroyDB that is used in tests loops over the files returned by ::GetChildren and delete them one by one. Such files might be already deleted in the file system (during DeleteObsoleteFileImpl for example) but will get actually deleted with a delay sometimes before ::DeleteFile is called on the file name. We have some test failures where FaultInjectionTestEnv::DeleteFile fails on assert(s.ok()) during DestroyDB. This patch removes the assert statement to fix that.
Closes https://github.com/facebook/rocksdb/pull/3324

Differential Revision: D6659545

Pulled By: maysamyabandeh

fbshipit-source-id: 4c9552fbcd494dcf3e61d475c11fc965c4388b2c
main
Maysam Yabandeh 7 years ago committed by Facebook Github Bot
parent ea8ccd2267
commit 1c9ada59cc
  1. 5
      utilities/transactions/transaction_test.h

@ -72,6 +72,11 @@ class TransactionTest : public ::testing::TestWithParam<
~TransactionTest() { ~TransactionTest() {
delete db; delete db;
// This is to skip the assert statement in FaultInjectionTestEnv. There
// seems to be a bug in btrfs that the makes readdir return recently
// unlink-ed files. By using the default fs we simply ignore errors resulted
// from attempting to delete such files in DestroyDB.
options.env = Env::Default();
DestroyDB(dbname, options); DestroyDB(dbname, options);
delete env; delete env;
} }

Loading…
Cancel
Save