Skip to content

Commit c4f53cb

Browse files
pvts-matPlaidCat
authored andcommitted
Covered a special case in the tests list printing snippet
1 parent 09318c2 commit c4f53cb

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

kselftests/README.rst

+5-1
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ Printing the list of all available tests
342342

343343
.. code:: shell
344344
345-
for col in $(make --print-data-base -C tools/testing/selftests --dry-run clean \
345+
for col in $(make --print-data-base -C tools/testing/selftests SKIP_TARGETS= --dry-run clean \
346346
| grep '^TARGETS :\?=' \
347347
| sed -e 's/.*:\?=//g'); do
348348
make --silent COLLECTION=${col} -C tools/testing/selftests/${col} emit_tests
@@ -356,6 +356,10 @@ Explanation:
356356
``--print-data-base``
357357
Prints the value of ``TARGETS`` variable (among many other
358358
information)
359+
``SKIP_TARGETS=``
360+
Demands explicitly to **not** remove any positions from the
361+
``TARGETS`` variable (yes, the Makefile may decide for the user to
362+
skip some targets, eg. ``bpf`` on ``ciqlts9_2``)
359363
``clean``
360364
Any valid target will do, ``clean`` just takes least time.
361365
``--dry-run``

0 commit comments

Comments
 (0)