about summary refs log tree commit diff stats
path: root/003trace.test.cc
diff options
context:
space:
mode:
Diffstat (limited to '003trace.test.cc')
-rw-r--r--003trace.test.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/003trace.test.cc b/003trace.test.cc
index 91b495a1..146f9dc2 100644
--- a/003trace.test.cc
+++ b/003trace.test.cc
@@ -51,6 +51,11 @@ void test_trace_supports_count2() {
   CHECK_EQ(trace_count("test layer 1"), 2);
 }
 
+void test_trace_count_ignores_trailing_whitespace() {
+  trace("test layer 1") << "foo\n";
+  CHECK(trace_count("test layer 1", "foo") == 1);
+}
+
 // pending: DUMP tests
 // pending: readable_contents() adds newline if necessary.
 // pending: raise also prints to stderr.