diff --git a/ci/test-bench.sh b/ci/test-bench.sh index 157100f0a..4e12ca296 100755 --- a/ci/test-bench.sh +++ b/ci/test-bench.sh @@ -43,10 +43,10 @@ _ cargo +nightly bench --features=unstable ${V:+--verbose} \ -- -Z unstable-options --format=json | tee "$BENCH_FILE" # Run bpf_loader bench with bpf_c feature enabled -echo --- program/native/bpf_loader bench --features=bpf_c +echo --- program/bpf_loader bench --features=bpf_c ( set -x - cd programs/native/bpf_loader + cd programs/bpf_loader cargo +nightly bench ${V:+--verbose} --features="bpf_c" \ -- -Z unstable-options --format=json --nocapture | tee -a ../../../"$BENCH_FILE" ) diff --git a/ci/test-stable.sh b/ci/test-stable.sh index 1ac076643..222a3f68b 100755 --- a/ci/test-stable.sh +++ b/ci/test-stable.sh @@ -56,7 +56,7 @@ test-stable-perf) popd _ cargo test --manifest-path programs/Cargo.toml --no-default-features --features="$PROGRAM_FEATURES" - _ cargo test --manifest-path programs/native/bpf_loader/Cargo.toml --no-default-features --features="$PROGRAM_FEATURES" + _ cargo test --manifest-path programs/bpf_loader/Cargo.toml --no-default-features --features="$PROGRAM_FEATURES" # Run root package tests witht these features ROOT_FEATURES=erasure,chacha