Add system_instruction::{allocate, allocate_with_seed, assign_with_seed}, (#7847)

* cleanup test checks cargo audit

* Add system_instruction allocate

* fixup

* fixup
This commit is contained in:
Rob Walker
2020-01-17 09:29:15 -08:00
committed by GitHub
parent 87598c7612
commit 470d9cd752
3 changed files with 421 additions and 224 deletions

View File

@ -54,8 +54,8 @@ mkdir -p target/cov/tmp
find target/cov -name \*.gcda -newer "$timing_file" -print0 |
(while IFS= read -r -d '' gcda_file; do
gcno_file="${gcda_file%.gcda}.gcno"
ln -s "../../../$gcda_file" "target/cov/tmp/$(basename "$gcda_file")"
ln -s "../../../$gcno_file" "target/cov/tmp/$(basename "$gcno_file")"
ln -sf "../../../$gcda_file" "target/cov/tmp/$(basename "$gcda_file")"
ln -sf "../../../$gcno_file" "target/cov/tmp/$(basename "$gcno_file")"
done)
_ grcov target/cov/tmp > target/cov/lcov-full.info