diff options
author | Ray Kinsella <mdr@ashroe.eu> | 2020-03-10 14:35:32 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2020-04-28 11:10:50 +0000 |
commit | 4830e4f78fb8e46b23a1a0711cd06969a77d8d95 (patch) | |
tree | 36ff9c5252a62a8b5a50867a31c094c6a1bc1cda /test/Makefile | |
parent | a568a19b2956ed8b94b11c2ef041412473dc8442 (diff) |
vlib: startup multi-arch variant configuration
Support for startup node multi-arch variant selection through startup.conf.
This is to facilitate unit, functional testing and benchmarking of non-default
multi-arch variant node code path. Also added parameters to make test, to
specific using multi-arch variants in unit testing.
Type: improvement
Signed-off-by: Ray Kinsella <mdr@ashroe.eu>
Change-Id: I94fd332bb629683b7a7dd770ee9f615a9a424060
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile index 6ba2e44f3cc..7d9d4e92e89 100644 --- a/test/Makefile +++ b/test/Makefile @@ -380,6 +380,10 @@ help: @echo " TEST='bfd.BFDAPITestCase.test_add_bfd' selects a single test named test_add_bfd from test_bfd.py/BFDAPITestCase" @echo " TEST='*.*.test_add_bfd' selects all test functions named test_add_bfd from all files/classes" @echo "" + @echo " VARIANT=<variant> - specify which march node variant to unit test" + @echo " e.g. VARIANT=avx2 test the avx2 march variants" + @echo " e.g. VARIANT=avx512 test the avx512 march variants" + @echo "" @echo " VPP_ZOMBIE_NOCHECK=1 - skip checking for vpp (zombie) processes (CAUTION)" @echo " COREDUMP_SIZE=<size> - pass <size> as unix { coredump-size <size> } argument to vpp" @echo " e.g. COREDUMP_SIZE=4g" |