Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1290)

Unified Diff: third_party/boringssl/boringssl_unittest.cc

Issue 1459783002: Roll src/third_party/boringssl/src d7421ebf6..3ac32b1ed (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix build, estark comments Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/boringssl/boringssl_unittest.cc
diff --git a/third_party/boringssl/boringssl_unittest.cc b/third_party/boringssl/boringssl_unittest.cc
index 8538c69fec1d3370bc2862e819a40b57fddf22f5..a299decd2c3156459bbf20ca27fafab6583e5a55 100644
--- a/third_party/boringssl/boringssl_unittest.cc
+++ b/third_party/boringssl/boringssl_unittest.cc
@@ -200,6 +200,19 @@ TEST(BoringSSL, ECDSA) {
TestSimple("ecdsa_test");
}
+TEST(BoringSSL, ED25519) {
+ base::FilePath data_file;
+ ASSERT_TRUE(BoringSSLPath(&data_file));
+ data_file = data_file.Append(FILE_PATH_LITERAL("crypto"));
+ data_file = data_file.Append(FILE_PATH_LITERAL("curve25519"));
+ data_file = data_file.Append(FILE_PATH_LITERAL("ed25519_tests.txt"));
+
+ std::vector<base::CommandLine::StringType> args;
+ args.push_back(data_file.value());
+
+ TestProcess("ed25519_test", args);
+}
+
TEST(BoringSSL, ERR) {
TestSimple("err_test");
}
@@ -306,3 +319,7 @@ TEST(BoringSSL, Thread) {
TEST(BoringSSL, V3NameTest) {
TestSimple("v3name_test");
}
+
+TEST(BoringSSL, X25519) {
+ TestSimple("x25519_test");
+}
« no previous file with comments | « third_party/boringssl/boringssl_tests.gypi ('k') | third_party/boringssl/linux-arm/crypto/modes/ghash-armv4.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698