aboutsummaryrefslogtreecommitdiffstats
path: root/lang/cpp/tests
diff options
context:
space:
mode:
Diffstat (limited to 'lang/cpp/tests')
-rw-r--r--lang/cpp/tests/run-keylist.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/lang/cpp/tests/run-keylist.cpp b/lang/cpp/tests/run-keylist.cpp
index 852e321d..9e7d763c 100644
--- a/lang/cpp/tests/run-keylist.cpp
+++ b/lang/cpp/tests/run-keylist.cpp
@@ -119,6 +119,9 @@ main (int argc, char **argv)
} else if (!strcmp (*argv, "--locate")) {
argc--; argv++;
mode |= KeyListMode::Locate;
+ } else if (!strcmp (*argv, "--with-secret")) {
+ argc--; argv++;
+ mode |= KeyListMode::WithSecret;
} else if (!strcmp (*argv, "--force-extern")) {
argc--; argv++;
mode |= KeyListMode::ForceExtern;
@@ -126,6 +129,7 @@ main (int argc, char **argv)
argc--; argv++;
mode |= KeyListMode::LocateExternal;
} else if (!strncmp (*argv, "--", 2)) {
+ std::cerr << "Error: Unknown option: " << *argv << std::endl;
show_usage (1);
}
}