| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 <stdarg.h> | 5 #include <stdarg.h> |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/base_paths.h" | 9 #include "base/base_paths.h" |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 std::vector<base::CommandLine::StringType> args; | 264 std::vector<base::CommandLine::StringType> args; |
| 265 args.push_back(data_file.value()); | 265 args.push_back(data_file.value()); |
| 266 | 266 |
| 267 TestProcess("poly1305_test", args); | 267 TestProcess("poly1305_test", args); |
| 268 } | 268 } |
| 269 | 269 |
| 270 TEST(BoringSSL, PKCS7) { | 270 TEST(BoringSSL, PKCS7) { |
| 271 TestSimple("pkcs7_test"); | 271 TestSimple("pkcs7_test"); |
| 272 } | 272 } |
| 273 | 273 |
| 274 TEST(BoringSSL, PKCS8) { |
| 275 TestSimple("pkcs8_test"); |
| 276 } |
| 277 |
| 274 TEST(BoringSSL, PKCS12) { | 278 TEST(BoringSSL, PKCS12) { |
| 275 TestSimple("pkcs12_test"); | 279 TestSimple("pkcs12_test"); |
| 276 } | 280 } |
| 277 | 281 |
| 278 TEST(BoringSSL, PQueue) { | 282 TEST(BoringSSL, PQueue) { |
| 279 TestSimple("pqueue_test"); | 283 TestSimple("pqueue_test"); |
| 280 } | 284 } |
| 281 | 285 |
| 282 TEST(BoringSSL, RefcountTest) { | 286 TEST(BoringSSL, RefcountTest) { |
| 283 TestSimple("refcount_test"); | 287 TestSimple("refcount_test"); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 295 TestSimple("tab_test"); | 299 TestSimple("tab_test"); |
| 296 } | 300 } |
| 297 | 301 |
| 298 TEST(BoringSSL, Thread) { | 302 TEST(BoringSSL, Thread) { |
| 299 TestSimple("thread_test"); | 303 TestSimple("thread_test"); |
| 300 } | 304 } |
| 301 | 305 |
| 302 TEST(BoringSSL, V3NameTest) { | 306 TEST(BoringSSL, V3NameTest) { |
| 303 TestSimple("v3name_test"); | 307 TestSimple("v3name_test"); |
| 304 } | 308 } |
| OLD | NEW |