OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <stdio.h> | 5 #include <stdio.h> |
6 #include <stdlib.h> | 6 #include <stdlib.h> |
7 #include <algorithm> // for min() | 7 #include <algorithm> // for min() |
8 #include "base/atomicops.h" | 8 #include "base/atomicops.h" |
9 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
10 | 10 |
(...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
512 } | 512 } |
513 } | 513 } |
514 | 514 |
515 #endif | 515 #endif |
516 | 516 |
517 | 517 |
518 int main(int argc, char** argv) { | 518 int main(int argc, char** argv) { |
519 testing::InitGoogleTest(&argc, argv); | 519 testing::InitGoogleTest(&argc, argv); |
520 return RUN_ALL_TESTS(); | 520 return RUN_ALL_TESTS(); |
521 } | 521 } |
OLD | NEW |