Fix a conflict with tut arising when compiling with gcc 4.6. It also looks like tut::test_result::skip got renamed to tut::test_result::skipped in revision 190.

This commit is contained in:
Player Dagostino
2011-08-02 20:28:54 +02:00
parent a2313b026c
commit 258fe82db7
2 changed files with 2 additions and 2 deletions

View File

@@ -108,7 +108,7 @@ public:
++mFailedTests;
out << "abnormal termination";
break;
case tut::test_result::skip:
case tut::test_result::skipped:
++mSkippedTests;
out << "skipped known failure";
break;