Skip to content

Instantly share code, notes, and snippets.

@sogoagain
Last active April 27, 2023 12:48
Show Gist options
  • Save sogoagain/ff58bee09facecf1366a14b9ee1e104e to your computer and use it in GitHub Desktop.
Save sogoagain/ff58bee09facecf1366a14b9ee1e104e to your computer and use it in GitHub Desktop.
Setting up .zshrc to help with Bitcoin Core development
# Bitcoin Core
bitcoin_func_test() {
local args=()
for arg in "$@"
do
args+=(test/functional/${arg}*)
done
test/functional/test_runner.py "${args[@]}"
}
alias bitcoin_util_test='test/util/test_runner.py'
alias bitcoin_lint='test/lint/all-lint.py'
alias bitcoin_build='./autogen.sh && ./configure && make -j 2'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment