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 19 matching lines...) Expand all Loading... |
30 | 30 |
31 #include "config.h" | 31 #include "config.h" |
32 | 32 |
33 #include "platform/EventTracer.h" | 33 #include "platform/EventTracer.h" |
34 #include "platform/TestingPlatformSupport.h" | 34 #include "platform/TestingPlatformSupport.h" |
35 #include "platform/heap/Heap.h" | 35 #include "platform/heap/Heap.h" |
36 #include "wtf/CryptographicallyRandomNumber.h" | 36 #include "wtf/CryptographicallyRandomNumber.h" |
37 #include "wtf/MainThread.h" | 37 #include "wtf/MainThread.h" |
38 #include "wtf/Partitions.h" | 38 #include "wtf/Partitions.h" |
39 #include "wtf/WTF.h" | 39 #include "wtf/WTF.h" |
| 40 #include <base/bind.h> |
| 41 #include <base/bind_helpers.h> |
| 42 #include <base/test/launcher/unit_test_launcher.h> |
40 #include <base/test/test_suite.h> | 43 #include <base/test/test_suite.h> |
41 #include <string.h> | 44 #include <string.h> |
42 | 45 |
43 static double CurrentTime() | 46 static double CurrentTime() |
44 { | 47 { |
45 return 0.0; | 48 return 0.0; |
46 } | 49 } |
47 | 50 |
48 static void AlwaysZeroNumberSource(unsigned char* buf, size_t len) | 51 static void AlwaysZeroNumberSource(unsigned char* buf, size_t len) |
49 { | 52 { |
50 memset(buf, '\0', len); | 53 memset(buf, '\0', len); |
51 } | 54 } |
52 | 55 |
| 56 static int runTestSuite(base::TestSuite* testSuite) |
| 57 { |
| 58 int result = testSuite->Run(); |
| 59 blink::Heap::collectAllGarbage(); |
| 60 return result; |
| 61 } |
| 62 |
53 int main(int argc, char** argv) | 63 int main(int argc, char** argv) |
54 { | 64 { |
55 WTF::setRandomSource(AlwaysZeroNumberSource); | 65 WTF::setRandomSource(AlwaysZeroNumberSource); |
56 WTF::initialize(CurrentTime, nullptr, nullptr, nullptr, nullptr); | 66 WTF::initialize(CurrentTime, nullptr, nullptr, nullptr, nullptr); |
57 WTF::initializeMainThread(0); | 67 WTF::initializeMainThread(0); |
58 | 68 |
59 blink::TestingPlatformSupport::Config platformConfig; | 69 blink::TestingPlatformSupport::Config platformConfig; |
60 blink::TestingPlatformSupport platform(platformConfig); | 70 blink::TestingPlatformSupport platform(platformConfig); |
61 | 71 |
62 blink::Heap::init(); | 72 blink::Heap::init(); |
63 blink::ThreadState::attachMainThread(); | 73 blink::ThreadState::attachMainThread(); |
| 74 blink::ThreadState::current()->registerTraceDOMWrappers(nullptr, nullptr); |
64 blink::EventTracer::initialize(); | 75 blink::EventTracer::initialize(); |
65 int result = base::RunUnitTestsUsingBaseTestSuite(argc, argv); | 76 |
| 77 base::TestSuite testSuite(argc, argv); |
| 78 int result = base::LaunchUnitTests(argc, argv, base::Bind(runTestSuite, base
::Unretained(&testSuite))); |
| 79 |
66 blink::ThreadState::detachMainThread(); | 80 blink::ThreadState::detachMainThread(); |
67 blink::Heap::shutdown(); | 81 blink::Heap::shutdown(); |
68 | 82 |
69 WTF::shutdown(); | 83 WTF::shutdown(); |
70 return result; | 84 return result; |
71 } | 85 } |
OLD | NEW |