-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add helper script for diagnosing any future leak issues
- Loading branch information
1 parent
1e9c093
commit f409d08
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "https://www.apple.com/DTDs/PropertyList-1.0.dtd"\> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>com.apple.security.get-task-allow</key> | ||
<true/> | ||
</dict> | ||
</plist> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
# This script is a utility on Apple platforms to run one | ||
# of arboard's example binaries under the `leaks` CLI tool, | ||
# which can help to diagnose memory leakage in any kind of | ||
# native or runtime-managed code. | ||
|
||
example_name="$@" | ||
|
||
script_dir=$(dirname $BASH_SOURCE[0]) | ||
|
||
# Build the example | ||
cargo build --example "$example_name" | ||
|
||
# Sign it with the required entitlements for process debugging. | ||
codesign -s - -v -f --entitlements "$script_dir/debugger.entitlements" "./target/debug/examples/$example_name" | ||
|
||
# Run the example binary under `leaks` to look for any leaked objects. | ||
leaks --atExit -- "./target/debug/examples/$example_name" |