This commit is contained in:
Sebastian Messmer 2014-11-21 20:50:32 +01:00
parent 9046a54aaa
commit 5e13b65427
2 changed files with 1 additions and 4 deletions

View File

@ -16,6 +16,7 @@ public:
virtual void flush(int descriptor) = 0;
virtual void closeFile(int descriptor) = 0;
virtual void lstat(const boost::filesystem::path &path, struct ::stat *stbuf) = 0;
//TODO Unit-Tests for all functions below
virtual void fstat(int descriptor, struct ::stat *stbuf) = 0;
virtual void truncate(const boost::filesystem::path &path, off_t size) = 0;
virtual void ftruncate(int descriptor, off_t size) = 0;
@ -36,6 +37,4 @@ public:
}
#endif

View File

@ -35,5 +35,3 @@ TEST_P(FuseFlushFileDescriptorTest, FlushOnCloseFile) {
OpenAndCloseFile(FILENAME);
}