12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #include "testlib.h"
- using namespace std;
- string ending(int x)
- {
- x %= 100;
- if (x / 10 == 1)
- return "th";
- if (x % 10 == 1)
- return "st";
- if (x % 10 == 2)
- return "nd";
- if (x % 10 == 3)
- return "rd";
- return "th";
- }
- int main(int argc, char * argv[])
- {
- setName("compare sequences of tokens");
- registerTestlibCmd(argc, argv);
- std::string strAnswer;
- int n = 0;
- while (!ans.seekEof() && !ouf.seekEof())
- {
- n++;
- std::string j = ans.readWord();
- std::string p = ouf.readWord();
- strAnswer = p;
- quitif(j != p, _wa, "%d%s words differ - expected: '%s', found: '%s'",
- n, ending(n).c_str(), __testlib_part(j).c_str(), __testlib_part(p).c_str());
- }
- if (ans.seekEof() && ouf.seekEof())
- {
- if (n == 1)
- quitf(_ok, "%s", __testlib_part(strAnswer).c_str());
- else
- quitf(_ok, "%d words", n);
- }
- else
- {
- if (ans.seekEof())
- quitf(_wa, "Participant output contains extra tokens");
- else
- quitf(_wa, "Unexpected EOF in the participants output");
- }
- }
|