summaryrefslogtreecommitdiff
path: root/tools/testing
diff options
context:
space:
mode:
authorRebecca Mckeever <remckee0@gmail.com>2022-08-14 08:50:20 +0300
committerMike Rapoport <rppt@linux.ibm.com>2022-08-30 13:11:14 +0300
commit61ebea2ba19826ce6dff8686b72ecbea8269f6cc (patch)
tree1848e5eaddbc859959972dc67e9ebf3e1fda0223 /tools/testing
parentc0f1bc4e91c52be73ae1a5e6fd53371f5a7f0333 (diff)
downloadlinux-61ebea2ba19826ce6dff8686b72ecbea8269f6cc.tar.xz
memblock tests: update reference to obsolete build option in comments
The VERBOSE build option was replaced with the --verbose runtime option, but the comments describing the ASSERT_*() macros still refer to the VERBOSE build option. Update these comments so that they refer to the --verbose runtime option. Reviewed-by: David Hildenbrand <david@redhat.com> Signed-off-by: Rebecca Mckeever <remckee0@gmail.com> Signed-off-by: Mike Rapoport <rppt@linux.ibm.com> Link: https://lore.kernel.org/r/5f8a4c2bde34cc029282c68d47eda982d950f421.1660451025.git.remckee0@gmail.com
Diffstat (limited to 'tools/testing')
-rw-r--r--tools/testing/memblock/tests/common.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/tools/testing/memblock/tests/common.h b/tools/testing/memblock/tests/common.h
index 3e7f23d341d7..d396e5423a8e 100644
--- a/tools/testing/memblock/tests/common.h
+++ b/tools/testing/memblock/tests/common.h
@@ -16,7 +16,8 @@
* ASSERT_EQ():
* Check the condition
* @_expected == @_seen
- * If false, print failed test message (if in VERBOSE mode) and then assert
+ * If false, print failed test message (if running with --verbose) and then
+ * assert.
*/
#define ASSERT_EQ(_expected, _seen) do { \
if ((_expected) != (_seen)) \
@@ -28,7 +29,8 @@
* ASSERT_NE():
* Check the condition
* @_expected != @_seen
- * If false, print failed test message (if in VERBOSE mode) and then assert
+ * If false, print failed test message (if running with --verbose) and then
+ * assert.
*/
#define ASSERT_NE(_expected, _seen) do { \
if ((_expected) == (_seen)) \
@@ -40,7 +42,8 @@
* ASSERT_LT():
* Check the condition
* @_expected < @_seen
- * If false, print failed test message (if in VERBOSE mode) and then assert
+ * If false, print failed test message (if running with --verbose) and then
+ * assert.
*/
#define ASSERT_LT(_expected, _seen) do { \
if ((_expected) >= (_seen)) \