
Module: ppl/ppl Branch: master Commit: 5b80536886e308d776ad8c08b30c2d0e8b73f66c URL: http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commit;h=5b80536886e30...
Author: Enea Zaffanella zaffanella@cs.unipr.it Date: Thu Apr 22 15:20:33 2010 +0200
Fixed expected results for tests/Octagonal_Shape/writeoctagon1.cc
---
tests/Octagonal_Shape/writeoctagon1.cc | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/tests/Octagonal_Shape/writeoctagon1.cc b/tests/Octagonal_Shape/writeoctagon1.cc index 14853bb..3535387 100644 --- a/tests/Octagonal_Shape/writeoctagon1.cc +++ b/tests/Octagonal_Shape/writeoctagon1.cc @@ -40,7 +40,7 @@ test01() {
nout << "*** s << oc ***" << endl << "`" << s.str() << "'" << endl;
- return s.str() == "A - B == 4, A + B == 3"; + return s.str() == "A - B = 4, A + B = 3"; }
bool @@ -57,7 +57,7 @@ test02() {
nout << "*** s << oc ***" << endl << "`" << s.str() << "'" << endl;
- return s.str() == "A - B == 5, A + B == -1"; + return s.str() == "A - B = 5, A + B = -1"; }
bool @@ -109,7 +109,7 @@ test05() {
nout << "*** s << oc ***" << endl << "`" << s.str() << "'" << endl;
- return s.str() == "A - B == 4"; + return s.str() == "A - B = 4"; }
bool @@ -127,7 +127,7 @@ test06() {
nout << "*** s << oc ***" << endl << "`" << s.str() << "'" << endl;
- return s.str() == "A + B == 3"; + return s.str() == "A + B = 3"; }
bool @@ -171,7 +171,7 @@ test09() {
nout << "*** s << oc ***" << endl << "`" << s.str() << "'" << endl;
- return s.str() == "2*A == 3, 2*B == 1, A - B == 1, A + B == 2"; + return s.str() == "2*A = 3, 2*B = 1, A - B = 1, A + B = 2"; }
bool @@ -191,7 +191,7 @@ test10() {
nout << "*** s << oc ***" << endl << "`" << s.str() << "'" << endl;
- return s.str() == "A == 3/2, B == 1/2, A - B == 1, A + B == 2"; + return s.str() == "A = 3/2, B = 1/2, A - B = 1, A + B = 2"; }
} // namespace