mirror of
https://github.com/theryangeary/choose
synced 2024-11-12 22:37:08 +00:00
7243843d2f
Add output_field_separator option Add output_field_separator tests Change structopt req to 0.3 Separate negative choices into a function Prevent tail printing output_field_separator Change OFS to Option<String> with a default value of " " Reorder arguments to write_bytes to parallel print_choice Print output_separator in main loop if applicable Add `cargo test` to Makefile Add write_separator function
26 lines
842 B
Makefile
26 lines
842 B
Makefile
flamegraph: release-debug
|
|
perf record --call-graph dwarf,16384 -e cpu-clock -F 997 target/release/choose -i test/long_long_long_long.txt 3:5
|
|
perf script | stackcollapse-perf.pl | stackcollapse-recursive.pl | c++filt | flamegraph.pl > flamegraphs/working.svg
|
|
|
|
flamegraph_commit: release-debug
|
|
perf record --call-graph dwarf,16384 -e cpu-clock -F 997 target/release/choose -i test/long_long_long_long.txt 3:5
|
|
perf script | stackcollapse-perf.pl | stackcollapse-recursive.pl | c++filt | flamegraph.pl > flamegraphs/`git log -n 1 --pretty=format:"%h"`.svg
|
|
|
|
.PHONY: test
|
|
test:
|
|
cargo test
|
|
test/e2e_test.sh
|
|
|
|
bench: release
|
|
test/bench.sh working
|
|
|
|
bench_commit: release
|
|
test/bench.sh `git log -n 1 --pretty=format:"%h"`
|
|
|
|
.PHONY: release-debug
|
|
release-debug:
|
|
RUSTFLAGS=-g cargo build --release
|
|
|
|
.PHONY: release
|
|
release:
|
|
cargo build --release
|