diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-02-15 15:56:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-02-15 17:12:19 +0300 |
commit | d6bf14eebdfb9939e0fa1f61f81fa1046ff9ea27 (patch) | |
tree | a48d3d2cf16e347e18a65020d755371eb0cabcfe /src/utils/virtfs.h | |
parent | 42b05f92d4466aa49806ab7d1e6985ad943ae1ea (diff) | |
download | plus-d6bf14eebdfb9939e0fa1f61f81fa1046ff9ea27.tar.gz plus-d6bf14eebdfb9939e0fa1f61f81fa1046ff9ea27.tar.bz2 plus-d6bf14eebdfb9939e0fa1f61f81fa1046ff9ea27.tar.xz plus-d6bf14eebdfb9939e0fa1f61f81fa1046ff9ea27.zip |
Fix unit tests if unpack from tarball. Here soft links replaced to actual files.
Diffstat (limited to 'src/utils/virtfs.h')
-rw-r--r-- | src/utils/virtfs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utils/virtfs.h b/src/utils/virtfs.h index 2b2550826..e0f188cfb 100644 --- a/src/utils/virtfs.h +++ b/src/utils/virtfs.h @@ -40,6 +40,7 @@ namespace VirtFs bool exists(const std::string &restrict name); VirtList *enumerateFiles(const std::string &restrict dir) RETURNS_NONNULL; bool isDirectory(const std::string &restrict name); + bool isSymbolicLink(const std::string &restrict name); void freeList(VirtList *restrict const handle); VirtFile *openRead(const std::string &restrict filename); VirtFile *openWrite(const std::string &restrict filename); |