summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuben Tuikov <luben.tuikov@amd.com>2023-03-16 15:09:14 -0400
committerAlex Deucher <alexdeucher@gmail.com>2023-03-24 13:47:21 +0000
commit25e08fd9ae83d8362573e95fa7eead28846e501f (patch)
treeec30d5171de77b49f37298c32bfdafaf42e106e0
parentbf867aed2764a45400b846ba8c88b28b9183aabf (diff)
downloaddrm-25e08fd9ae83d8362573e95fa7eead28846e501f.tar.gz
tests/amdgpu: Fix Usage string
Fix the Usage: string on -h (help) in amdgpu_tests.c, so brackets match, and remove mismatched angle brackets. Cc: Alex Deucher <Alexander.Deucher@amd.com> Signed-off-by: Luben Tuikov <luben.tuikov@amd.com>
-rw-r--r--tests/amdgpu/amdgpu_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/amdgpu/amdgpu_test.c b/tests/amdgpu/amdgpu_test.c
index 9abe5730..b8fd638c 100644
--- a/tests/amdgpu/amdgpu_test.c
+++ b/tests/amdgpu/amdgpu_test.c
@@ -296,8 +296,8 @@ static void display_test_suites(void)
/** Help string for command line parameters */
static const char usage[] =
- "Usage: %s [-hlpr] [<-s <suite id>> [-t <test id>] [-f]] "
- "[-b <pci_bus_id> [-d <pci_device_id>]]\n"
+ "Usage: %s [-hlpr] [-s <suite id>] [-t <test id>] [-f] "
+ "[-b <pci_bus_id>] [-d <pci_device_id>]\n"
"where:\n"
" l - Display all suites and their tests\n"
" r - Run the tests on render node\n"