aboutsummaryrefslogtreecommitdiffstats
path: root/host/examples/test_messages.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/examples/test_messages.cpp')
-rw-r--r--host/examples/test_messages.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/host/examples/test_messages.cpp b/host/examples/test_messages.cpp
index 0f7c289d2..2ff10049d 100644
--- a/host/examples/test_messages.cpp
+++ b/host/examples/test_messages.cpp
@@ -275,12 +275,14 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//setup the program options
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "multi uhd device address args")
("ntests", po::value<size_t>(&ntests)->default_value(50), "number of tests to run")
("test-chain", "Run broken chain tests")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);
po::notify(vm);