mbox series

[bpf-next,v4,0/2] selftests/bpf: implement setting global variables in veristat

Message ID 20250221223259.677471-1-mykyta.yatsenko5@gmail.com (mailing list archive)
Headers show
Series selftests/bpf: implement setting global variables in veristat | expand

Message

Mykyta Yatsenko Feb. 21, 2025, 10:32 p.m. UTC
From: Mykyta Yatsenko <yatsenko@meta.com>

To better verify some complex BPF programs by veristat, it would be useful
to preset global variables. This patch set implements this functionality
and introduces tests for veristat.

v3->v4:
  * Fixing bug in set_global_var introduced by refactoring in previous patch set.
  * Addressed nits from Eduard

v2->v3:
  * Reworked parsing of the presets, using sscanf to split into variable and value, but
still use strtoll/strtoull to support range checks when parsing integers
  * Fix test failures for no_alu32 & cpuv4 by checking if veristat binary is in parent folder
  * Introduce __CHECK_STR macro for simplifying checks in test
  * Modify tests into sub-tests

Mykyta Yatsenko (2):
  selftests/bpf: implement setting global variables in veristat
  selftests/bpf: introduce veristat test

 tools/testing/selftests/bpf/Makefile          |   1 +
 .../selftests/bpf/prog_tests/test_veristat.c  | 139 +++++++++
 .../selftests/bpf/progs/set_global_vars.c     |  47 +++
 tools/testing/selftests/bpf/test_progs.h      |   8 +
 tools/testing/selftests/bpf/veristat.c        | 290 +++++++++++++++++-
 5 files changed, 484 insertions(+), 1 deletion(-)
 create mode 100644 tools/testing/selftests/bpf/prog_tests/test_veristat.c
 create mode 100644 tools/testing/selftests/bpf/progs/set_global_vars.c