Skip to content

Commit e61d378

Browse files
committed
fix(test): restore develop ARM64 LevelDB exclude rules in build.gradle
1 parent 6eb7288 commit e61d378

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

framework/build.gradle

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,15 @@ test {
138138
}
139139
if (rootProject.archInfo.isArm64) {
140140
systemProperty 'storage.db.engine', 'ROCKSDB'
141-
exclude '**/LevelDbDataSourceImplTest.class'
141+
exclude { element ->
142+
element.file.name.toLowerCase().contains('leveldb')
143+
}
144+
filter {
145+
excludeTestsMatching '*.*leveldb*'
146+
excludeTestsMatching '*.*Leveldb*'
147+
excludeTestsMatching '*.*LevelDB*'
148+
excludeTestsMatching '*.*LevelDb*'
149+
}
142150
}
143151
}
144152

0 commit comments

Comments
 (0)