==============================================================================
| 21 | |
| 22 | //============================================================================== |
| 23 | int main (int argc, const char** argv) |
| 24 | { |
| 25 | choc::ArgumentList args (argc, argv); |
| 26 | |
| 27 | choc::test::TestProgress progress; |
| 28 | return choc_unit_tests::runAllTests (progress, args.contains ("--multithread")) ? 0 : 1; |
| 29 | } |
| 30 | |
| 31 | //============================================================================== |
| 32 | // include this last to make sure the tests don't rely on any of the garbage |