Last active
January 8, 2026 23:16
-
-
Save nmoinvaz/616ee212c879f5da145a863dc78872b8 to your computer and use it in GitHub Desktop.
zlib-ng launch.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // Use IntelliSense to learn about possible attributes. | |
| // Hover to view descriptions of existing attributes. | |
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "fuzzer_example_small", | |
| "type": "lldb", | |
| "request": "launch", | |
| "program": "${command:cmake.launchTargetPath}", | |
| "args": [ | |
| "/Users/nathan/Source/zlib-ng/output.bin" | |
| ], | |
| "cwd": "${workspaceFolder}/build" | |
| }, | |
| { | |
| "name": "gtest_zlib", | |
| "type": "lldb", | |
| "request": "launch", | |
| "program": "${command:cmake.launchTargetPath}", | |
| "args": [ | |
| "--abort_on_failure" | |
| ], | |
| "cwd": "${workspaceFolder}/build" | |
| }, | |
| { | |
| "name": "gtest_zlib - adler32", | |
| "type": "lldb", | |
| "request": "launch", | |
| "program": "${command:cmake.launchTargetPath}", | |
| "args": [ | |
| "--gtest_filter=adler32*", | |
| "--gtest_break_on_failure" | |
| ], | |
| "cwd": "${workspaceFolder}/build" | |
| }, | |
| { | |
| "name": "gtest_zlib - crc32", | |
| "type": "lldb", | |
| "request": "launch", | |
| "program": "${command:cmake.launchTargetPath}", | |
| "args": [ | |
| "--gtest_filter=crc32/crc32_variant.*", | |
| "--gtest_break_on_failure" | |
| ], | |
| "cwd": "${workspaceFolder}/build" | |
| }, | |
| { | |
| "name": "benchmark_zlib - compare256", | |
| "type": "lldb", | |
| "request": "launch", | |
| "program": "${command:cmake.launchTargetPath}", | |
| "args": [ | |
| "--benchmark_filter=compare256*", | |
| //"--benchmark_repetitions=5" | |
| ], | |
| "cwd": "${workspaceFolder}/build" | |
| }, | |
| { | |
| "name": "benchmark_zlib - adler32", | |
| "type": "lldb", | |
| "request": "launch", | |
| "program": "${command:cmake.launchTargetPath}", | |
| "args": [ | |
| "--benchmark_filter=adler32*", | |
| //"--benchmark_repetitions=5" | |
| ], | |
| "cwd": "${workspaceFolder}/build" | |
| }, | |
| { | |
| "name": "benchmark_zlib - crc32", | |
| "type": "lldb", | |
| "request": "launch", | |
| "program": "${command:cmake.launchTargetPath}", | |
| "args": [ | |
| "--benchmark_filter=crc32/arm*", | |
| //"--benchmark_repetitions=5" | |
| ], | |
| "cwd": "${workspaceFolder}/build" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment