From 44c1aeef226542d692f0002b5cca5a3c30935d18 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sat, 10 Sep 2016 10:43:19 -0700 Subject: 3315 --- html/003trace.test.cc.html | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'html/003trace.test.cc.html') diff --git a/html/003trace.test.cc.html b/html/003trace.test.cc.html index 439e8613..6c1c6e53 100644 --- a/html/003trace.test.cc.html +++ b/html/003trace.test.cc.html @@ -43,8 +43,8 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color void test_trace_check_ignores_leading_whitespace() { trace("test layer 1") << " foo" << end(); - CHECK(trace_count("test layer 1", /*too little whitespace*/"foo") == 1); - CHECK(trace_count("test layer 1", /*too much whitespace*/" foo") == 1); + CHECK_EQ(trace_count("test layer 1", /*too little whitespace*/"foo"), 1); + CHECK_EQ(trace_count("test layer 1", /*too much whitespace*/" foo"), 1); } void test_trace_check_ignores_other_lines() { @@ -90,7 +90,7 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color void test_trace_count_ignores_trailing_whitespace() { trace("test layer 1") << "foo\n" << end(); - CHECK(trace_count("test layer 1", "foo") == 1); + CHECK_EQ(trace_count("test layer 1", "foo"), 1); } // pending: DUMP tests @@ -102,8 +102,6 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color // pending: raise prints to stderr if Trace_stream is NULL even if Hide_errors is set. // pending: raise << ... die() doesn't die if Hide_errors is set. -^L - // can't check trace because trace methods call 'split' void test_split_returns_at_least_one_elem() { -- cgit 1.4.1-2-gfad0