From 874cd47baffe0c4c5b30d3de3736c348bbf85de0 Mon Sep 17 00:00:00 2001
From: Vicki Pfau <vi@endrift.com>
Date: Sat, 25 Jul 2020 00:19:43 -0700
Subject: [PATCH] Test: Fix out-of-date CInema usage info

---
 src/platform/test/cinema-main.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/platform/test/cinema-main.c b/src/platform/test/cinema-main.c
index ffd9c4839..9a4b847be 100644
--- a/src/platform/test/cinema-main.c
+++ b/src/platform/test/cinema-main.c
@@ -286,12 +286,13 @@ static bool parseCInemaArgs(int argc, char* const* argv) {
 }
 
 static void usageCInema(const char* arg0) {
-	printf("usage: %s [-dhnqv] [-b BASE] [-o DIR] [--version] [test...]\n", arg0);
-	puts("  -b, --base [BASE]          Path to the CInema base directory");
+	printf("usage: %s [-dhnqrRv] [-j JOBS] [-b BASE] [-o DIR] [--version] [test...]\n", arg0);
+	puts("  -b, --base BASE            Path to the CInema base directory");
 	puts("  -d, --diffs                Output image diffs from failures");
 	puts("  -h, --help                 Print this usage and exit");
+	puts("  -j, --jobs JOBS            Run a number of jobs in parallel");
 	puts("  -n, --dry-run              List all collected tests instead of running them");
-	puts("  -o, --output [DIR]         Path to output applicable results");
+	puts("  -o, --output DIR           Path to output applicable results");
 	puts("  -q, --quiet                Decrease log verbosity (can be repeated)");
 	puts("  -r, --rebaseline           Rewrite the baseline for failing tests");
 	puts("  -R, --rebaseline-missing   Write missing baselines tests only");