summaryrefslogtreecommitdiff
path: root/nss/gtests/common/gtests.cc
diff options
context:
space:
mode:
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) {