summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Siek <jeremy.siek@gmail.com>2000-12-17 20:29:01 +0000
committerJeremy Siek <jeremy.siek@gmail.com>2000-12-17 20:29:01 +0000
commit95733a4a3ad3f1001d08a9058471ba008b0d17e2 (patch)
treed8677e94dea021b20be80b7605d2734d19e7ad9c
parenta31c297c138790ad4203f3c977e709d0285beea4 (diff)
downloadboost-95733a4a3ad3f1001d08a9058471ba008b0d17e2.tar.gz
changed output
[SVN r8469]
-rw-r--r--libs/regrtest.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/libs/regrtest.cpp b/libs/regrtest.cpp
index 6161689257..f192ab3ba8 100644
--- a/libs/regrtest.cpp
+++ b/libs/regrtest.cpp
@@ -111,17 +111,17 @@ void invoke(std::string desc,
switch (invoke_mode) {
case 'C': // compile
if (rs==0)
- outfile << "<FONT COLOR=#008000>succeeded: compiled as expected</FONT>";
+ outfile << "<FONT COLOR=#008000>yes</FONT>";
else
- outfile << "<FONT COLOR=#800000>failed: did not compile</FONT>";
+ outfile << "<FONT COLOR=#800000>no: did not compile</FONT>";
break;
case 'F': // compile, fail expected
if (rs==0)
outfile
- << "<FONT COLOR=#800000>failed: expected compiler error</FONT>";
+ << "<FONT COLOR=#800000>no: expected compiler error</FONT>";
else
outfile
- << "<FONT COLOR=#008000>succeeded: compiler error as expected</FONT>";
+ << "<FONT COLOR=#008000>yes</FONT>";
break;
case 'R': // run
if (rs==0) {
@@ -133,12 +133,12 @@ void invoke(std::string desc,
rs = system(cmd_line.c_str());
if (rs==0)
outfile
- << "<FONT COLOR=#008000>succeeded: built and ran</FONT>";
+ << "<FONT COLOR=#008000>yes</FONT>";
else
- outfile << "<FONT COLOR=#800000>failed: exited with code "
+ outfile << "<FONT COLOR=#800000>no: exited with code "
<< rs << "</FONT>";
} else
- outfile << "<FONT COLOR=#800000>failed: did not compile</FONT>";
+ outfile << "<FONT COLOR=#800000>no: did not compile</FONT>";
break;
default:
outfile << "scripting error";