diff options
author | Lorry Tar Creator <lorry-tar-importer@lorry> | 2017-06-08 10:53:01 +0000 |
---|---|---|
committer | Lorry Tar Creator <lorry-tar-importer@lorry> | 2017-06-08 10:53:01 +0000 |
commit | f95d45c36e7c7131747259956821d844e8952e5d (patch) | |
tree | eee14f8b212c48f8597c2a4927a167fcc3a15ea5 /nss/gtests/common/gtests.cc | |
parent | dc1565216a5d20ae0d75872151523252309a1292 (diff) | |
download | nss-master.tar.gz |
Diffstat (limited to 'nss/gtests/common/gtests.cc')
-rw-r--r-- | nss/gtests/common/gtests.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/nss/gtests/common/gtests.cc b/nss/gtests/common/gtests.cc index c51437c..bd5a97a 100644 --- a/nss/gtests/common/gtests.cc +++ b/nss/gtests/common/gtests.cc @@ -10,8 +10,12 @@ int main(int argc, char **argv) { ::testing::InitGoogleTest(&argc, argv); - NSS_NoDB_Init(nullptr); - NSS_SetDomesticPolicy(); + if (NSS_NoDB_Init(nullptr) != SECSuccess) { + return 1; + } + if (NSS_SetDomesticPolicy() != SECSuccess) { + return 1; + } int rv = RUN_ALL_TESTS(); if (NSS_Shutdown() != SECSuccess) { |