Skip to content

Enable Snappy compression support in LevelDb in cmake builds #885

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Apr 12, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
leveldb_snappy_test.cc: add SKIP_TEST_ON_IOS
  • Loading branch information
dconeybe committed Apr 11, 2022
commit 07023a9751b4b3acacea7c379b43ed72fc8ed90b
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ Path CreateLevelDbDatabaseThatUsesSnappyCompression();
// This test ensures that we don't accidentally regress having added in Snappy
// compression support (https://github.com/firebase/firebase-ios-sdk/pull/9596).
TEST(LevelDbSnappy, LevelDbHasSnappySupportCompiledIn) {
// Do not run this test on iOS because LevelDb in iOS does not support Snappy.
SKIP_TEST_ON_IOS;

Path leveldb_path = CreateLevelDbDatabaseThatUsesSnappyCompression();
if (HasFatalFailure()) return;

Expand Down