| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "sky/engine/config.h" | 31 #include "sky/engine/config.h" |
| 32 | 32 |
| 33 #include <string.h> | 33 #include <string.h> |
| 34 #include "base/test/test_suite.h" | 34 #include "base/test/test_suite.h" |
| 35 #include "sky/engine/platform/EventTracer.h" | |
| 36 #include "sky/engine/platform/Partitions.h" | 35 #include "sky/engine/platform/Partitions.h" |
| 37 #include "sky/engine/platform/TestingPlatformSupport.h" | 36 #include "sky/engine/platform/TestingPlatformSupport.h" |
| 38 #include "sky/engine/wtf/CryptographicallyRandomNumber.h" | 37 #include "sky/engine/wtf/CryptographicallyRandomNumber.h" |
| 39 #include "sky/engine/wtf/MainThread.h" | 38 #include "sky/engine/wtf/MainThread.h" |
| 40 #include "sky/engine/wtf/WTF.h" | 39 #include "sky/engine/wtf/WTF.h" |
| 41 | 40 |
| 42 static void AlwaysZeroNumberSource(unsigned char* buf, size_t len) | 41 static void AlwaysZeroNumberSource(unsigned char* buf, size_t len) |
| 43 { | 42 { |
| 44 memset(buf, '\0', len); | 43 memset(buf, '\0', len); |
| 45 } | 44 } |
| 46 | 45 |
| 47 int main(int argc, char** argv) | 46 int main(int argc, char** argv) |
| 48 { | 47 { |
| 49 WTF::setRandomSource(AlwaysZeroNumberSource); | 48 WTF::setRandomSource(AlwaysZeroNumberSource); |
| 50 WTF::initialize(); | 49 WTF::initialize(); |
| 51 WTF::initializeMainThread(); | 50 WTF::initializeMainThread(); |
| 52 | 51 |
| 53 blink::TestingPlatformSupport::Config platformConfig; | 52 blink::TestingPlatformSupport::Config platformConfig; |
| 54 blink::TestingPlatformSupport platform(platformConfig); | 53 blink::TestingPlatformSupport platform(platformConfig); |
| 55 | 54 |
| 56 blink::Partitions::init(); | 55 blink::Partitions::init(); |
| 57 int result = base::RunUnitTestsUsingBaseTestSuite(argc, argv); | 56 int result = base::RunUnitTestsUsingBaseTestSuite(argc, argv); |
| 58 blink::Partitions::shutdown(); | 57 blink::Partitions::shutdown(); |
| 59 return result; | 58 return result; |
| 60 } | 59 } |
| OLD | NEW |