diff options
Diffstat (limited to 'security/nss/gtests/common/gtests.cc')
-rw-r--r-- | security/nss/gtests/common/gtests.cc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/security/nss/gtests/common/gtests.cc b/security/nss/gtests/common/gtests.cc new file mode 100644 index 000000000..c51437cb4 --- /dev/null +++ b/security/nss/gtests/common/gtests.cc @@ -0,0 +1,22 @@ +#include "nspr.h" +#include "nss.h" +#include "ssl.h" + +#include <cstdlib> + +#define GTEST_HAS_RTTI 0 +#include "gtest/gtest.h" + +int main(int argc, char **argv) { + ::testing::InitGoogleTest(&argc, argv); + + NSS_NoDB_Init(nullptr); + NSS_SetDomesticPolicy(); + int rv = RUN_ALL_TESTS(); + + if (NSS_Shutdown() != SECSuccess) { + return 1; + } + + return rv; +} |