Message ID | 20240416143718.2857981-4-alan.maguire@oracle.com (mailing list archive) |
---|---|
State | Not Applicable |
Delegated to: | BPF |
Headers | show |
Series | pahole: support nonstandard btf_features | expand |
Context | Check | Description |
---|---|---|
netdev/tree_selection | success | Not a local patch |
diff --git a/tests/reproducible_build.sh b/tests/reproducible_build.sh index 8cc36fe..e2f8360 100755 --- a/tests/reproducible_build.sh +++ b/tests/reproducible_build.sh @@ -29,7 +29,7 @@ nr_proc=$(getconf _NPROCESSORS_ONLN) for threads in $(seq $nr_proc) ; do test -n "$VERBOSE" && echo $threads threads encoding - pahole -j$threads --reproducible_build --btf_features=all --btf_encode_detached=$outdir/vmlinux.btf.parallel.reproducible $vmlinux & + pahole -j$threads --btf_features=all,reproducible_build --btf_encode_detached=$outdir/vmlinux.btf.parallel.reproducible $vmlinux & pahole=$! # HACK: Wait a bit for pahole to start its threads sleep 0.3s
...as this will test enabling all standard features plus a non-standard one. Signed-off-by: Alan Maguire <alan.maguire@oracle.com> --- tests/reproducible_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)