mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-10 02:18:57 +00:00
23 lines
355 B
C++
23 lines
355 B
C++
#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;
|
|
}
|