summaryrefslogtreecommitdiff
path: root/nss/gtests/common/gtests.cc
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2017-06-08 10:53:01 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2017-06-08 10:53:01 +0000
commitf95d45c36e7c7131747259956821d844e8952e5d (patch)
treeeee14f8b212c48f8597c2a4927a167fcc3a15ea5 /nss/gtests/common/gtests.cc
parentdc1565216a5d20ae0d75872151523252309a1292 (diff)
downloadnss-master.tar.gz
Diffstat (limited to 'nss/gtests/common/gtests.cc')
-rw-r--r--nss/gtests/common/gtests.cc8
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) {