Commit e019b56e authored by Yossi Gottlieb's avatar Yossi Gottlieb
Browse files

Merge remote-tracking branch 'upstream/master'

parents b3553bf8 74836ffa
......@@ -26,7 +26,7 @@ cat $FILES | grep '^void Test' |
echo \
'
void RunAllTests(void)
int RunAllTests(void)
{
CuString *output = CuStringNew();
CuSuite* suite = CuSuiteNew();
......@@ -43,11 +43,11 @@ echo \
CuSuiteRun(suite);
CuSuiteDetails(suite, output);
printf("%s\\n", output->buffer);
return suite->failCount == 0 ? 0 : 1;
}
int main()
{
RunAllTests();
return 0;
return RunAllTests();
}
'
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment