Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
RedisLabs Raft
Commits
e019b56e
Commit
e019b56e
authored
Oct 08, 2018
by
Yossi Gottlieb
Browse files
Merge remote-tracking branch 'upstream/master'
parents
b3553bf8
74836ffa
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/make-tests.sh
View file @
e019b56e
...
...
@@ -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();
}
'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment