summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Siek <jeremy.siek@gmail.com>2000-12-17 20:31:37 +0000
committerJeremy Siek <jeremy.siek@gmail.com>2000-12-17 20:31:37 +0000
commitd533c0eeceb5823b4631c88ce89ec787e80758b3 (patch)
tree88405ace83aff55c15335629314d12193ecc1bf5
parent95733a4a3ad3f1001d08a9058471ba008b0d17e2 (diff)
downloadboost-d533c0eeceb5823b4631c88ce89ec787e80758b3.tar.gz
edited output
[SVN r8470]
-rw-r--r--libs/regrtest.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/regrtest.cpp b/libs/regrtest.cpp
index f192ab3ba8..fc5dbea303 100644
--- a/libs/regrtest.cpp
+++ b/libs/regrtest.cpp
@@ -113,12 +113,12 @@ void invoke(std::string desc,
if (rs==0)
outfile << "<FONT COLOR=#008000>yes</FONT>";
else
- outfile << "<FONT COLOR=#800000>no: did not compile</FONT>";
+ outfile << "<FONT COLOR=#800000>failed to compile</FONT>";
break;
case 'F': // compile, fail expected
if (rs==0)
outfile
- << "<FONT COLOR=#800000>no: expected compiler error</FONT>";
+ << "<FONT COLOR=#800000>failed to cause error</FONT>";
else
outfile
<< "<FONT COLOR=#008000>yes</FONT>";
@@ -135,10 +135,10 @@ void invoke(std::string desc,
outfile
<< "<FONT COLOR=#008000>yes</FONT>";
else
- outfile << "<FONT COLOR=#800000>no: exited with code "
+ outfile << "<FONT COLOR=#800000>exited with code "
<< rs << "</FONT>";
} else
- outfile << "<FONT COLOR=#800000>no: did not compile</FONT>";
+ outfile << "<FONT COLOR=#800000>failed to compile</FONT>";
break;
default:
outfile << "scripting error";