summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJustin Pettit <jpettit@ovn.org>2018-02-09 17:02:09 -0800
committerJustin Pettit <jpettit@ovn.org>2018-02-09 22:56:58 -0800
commit94c0d9f74053bb0d8c55669509ac7678cc08e9c4 (patch)
treeec0ce56083021e004978081a11c36a0c02ac73c5 /tests
parentf8e79d82bd7b158b27791f648a1509adc9994efe (diff)
downloadopenvswitch-94c0d9f74053bb0d8c55669509ac7678cc08e9c4.tar.gz
tests: Don't include a newline in ovs_fatal() calls.
Signed-off-by: Justin Pettit <jpettit@ovn.org> Acked-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/test-rstp.c2
-rw-r--r--tests/test-stp.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-rstp.c b/tests/test-rstp.c
index 7bcff83f3..01aeaf847 100644
--- a/tests/test-rstp.c
+++ b/tests/test-rstp.c
@@ -467,7 +467,7 @@ test_rstp_main(int argc, char *argv[])
vlog_set_levels(NULL, VLF_SYSLOG, VLL_OFF);
if (argc != 2) {
- ovs_fatal(0, "usage: test-rstp INPUT.RSTP\n");
+ ovs_fatal(0, "usage: test-rstp INPUT.RSTP");
}
file_name = argv[1];
diff --git a/tests/test-stp.c b/tests/test-stp.c
index c072108c7..c85c99d67 100644
--- a/tests/test-stp.c
+++ b/tests/test-stp.c
@@ -446,7 +446,7 @@ test_stp_main(int argc, char *argv[])
vlog_set_levels(NULL, VLF_SYSLOG, VLL_OFF);
if (argc != 2) {
- ovs_fatal(0, "usage: test-stp INPUT.STP\n");
+ ovs_fatal(0, "usage: test-stp INPUT.STP");
}
file_name = argv[1];