mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 09:27:31 +09:00
22 lines
355 B
C++
22 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;
|
||
|
|
}
|