projects
/
awesomized
/
libmemcached
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
|
github
raw
|
patch
| inline |
side by side
(parent:
96702d0
)
Add none support for testing.
author
Brian Aker
<brian@tangent.org>
Sun, 8 Apr 2012 01:25:19 +0000
(18:25 -0700)
committer
Brian Aker
<brian@tangent.org>
Sun, 8 Apr 2012 01:25:19 +0000
(18:25 -0700)
libtest/test.cc
patch
|
blob
|
history
diff --git
a/libtest/test.cc
b/libtest/test.cc
index 25c97c94434073d2a23691fd072f081b1d95e417..ef10028c5800160dabb687448ec433b0bc0ba321 100644
(file)
--- a/
libtest/test.cc
+++ b/
libtest/test.cc
@@
-237,6
+237,11
@@
int main(int argc, char *argv[])
}
}
+ if (collection_to_run.compare("none") == 0)
+ {
+ return EXIT_SUCCESS;
+ }
+
if (collection_to_run.empty() == false)
{
Out << "Only testing " << collection_to_run;