aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Example/Firestore.xcodeproj/xcshareddata/xcschemes/Firestore_FuzzTests_iOS.xcscheme
Commit message (Collapse)AuthorAge
* Remove Limbo Document GC (#1413)Gravatar Greg Soltis2018-06-20
| | | | | | * Remove usage of eager garbage collector for tracking limbo document references * Fix style
* Fuzz testing Header Search Paths settings (#1395)Gravatar Mina Farid2018-06-11
| | | | * Modified `HEADER_SEARCH_PATHS` in the project file.
* Adding AppCode schema for Fuzz tests (#1388)Gravatar Sebastian Schmidt2018-06-07
|
* Add a new Xcode target and scheme for fuzz tests (#1364)Gravatar Mina Farid2018-06-04
Created `Firestore_FuzzTests_iOS` Xcode target as a duplicate of the target `Firestore_Tests_iOS`. - Added `-fsanitize-coverage=trace-pc-guard` to the compiler flags to enable code coverage by libFuzzer fuzzing driver. - Modified the files to compile to the fuzz testing ones. - Added a Principal testing class. * Modified the `Podfile` to include `LibFuzzer.podspec` as a dependency for the target `Firestore_FuzzTests_iOS`. * Added a skeleton for fuzz testing. Currently does not test any code but the fuzzing works fine and calls an empty `LLVMFuzzerTestOneInput` with different input values. - This means that fuzzing does not finish or crash.