File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -342,7 +342,7 @@ Printing the list of all available tests
342
342
343
343
.. code :: shell
344
344
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 \
346
346
| grep ' ^TARGETS :\?=' \
347
347
| sed -e ' s/.*:\?=//g' ) ; do
348
348
make --silent COLLECTION=${col} -C tools/testing/selftests/${col} emit_tests
@@ -356,6 +356,10 @@ Explanation:
356
356
``--print-data-base ``
357
357
Prints the value of ``TARGETS `` variable (among many other
358
358
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 ``)
359
363
``clean ``
360
364
Any valid target will do, ``clean `` just takes least time.
361
365
``--dry-run ``
You can’t perform that action at this time.
0 commit comments