diff options
author | Chris Wilson <chris+github@qwirx.com> | 2006-09-01 08:47:48 +0000 |
---|---|---|
committer | Chris Wilson <chris+github@qwirx.com> | 2006-09-01 08:47:48 +0000 |
commit | bb8f4cddf2aeddd8cb44d3b5ce13b66cce552198 (patch) | |
tree | 9b3cb2489a560a74e5cffe1012ff3a99bce8372f /test/backupstore | |
parent | d9dac474dcd98cba0d0cb523e7240896255572b8 (diff) |
(refs #3)
Disable symlink tests on Win32
Diffstat (limited to 'test/backupstore')
-rw-r--r-- | test/backupstore/testbackupstore.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/backupstore/testbackupstore.cpp b/test/backupstore/testbackupstore.cpp index b98058cf..87f77947 100644 --- a/test/backupstore/testbackupstore.cpp +++ b/test/backupstore/testbackupstore.cpp @@ -1632,6 +1632,7 @@ int test3(int argc, const char *argv[]) TEST_THAT(decoded->GetNumBlocks() == 3); } +#ifndef WIN32 // no symlinks on Win32 // Try out doing this on a symlink { TEST_THAT(::symlink("does/not/exist", "testfiles/testsymlink") == 0); @@ -1645,6 +1646,7 @@ int test3(int argc, const char *argv[]) // Decode it BackupStoreFile::DecodeFile(b, "testfiles/testsymlink_2", IOStream::TimeOutInfinite); } +#endif } // Store info |