Skip to content

Commit 6c7f474

Browse files
Move a tests that need to run on mac back to mac
Summary: D80843061 broke a few tests (see T236718173). This diff makes sure these tests run on a build made on macos so all artifacts can be found. Differential Revision: D81561853 fbshipit-source-id: 67b5083a2ef966f571e358b767249b53a5dbbb14
1 parent 1d2eb29 commit 6c7f474

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vrs/test/file_tests/ChunkedFileTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ TEST_F(ChunkedFileTester, LinkedFileTest) {
103103
// all the chunks are found & indexed
104104
string linkedFile = os::getTempFolder() + "chunks_link.vrs";
105105
EXPECT_EQ(::symlink(kChunkedFile.c_str(), linkedFile.c_str()), 0); // create a link
106-
EXPECT_EQ(file.openFile(linkedFile), 0);
106+
ASSERT_EQ(file.openFile(linkedFile), 0);
107107
EXPECT_EQ(file.getRecordCount(), 306);
108108
EXPECT_EQ(file.getFileChunks().size(), 3);
109109
EXPECT_EQ(file.getStreamsSignature(), kChunkedFileStreamSignature);

0 commit comments

Comments
 (0)