mirror of
https://github.com/SysRay/psOff_public.git
synced 2024-11-27 00:20:54 +00:00
format
This commit is contained in:
parent
b181559a19
commit
647e001d49
@ -160,6 +160,5 @@ class INetworking {
|
|||||||
virtual int httpsSetSslVersion(int id, SceSslVersion version) = 0;
|
virtual int httpsSetSslVersion(int id, SceSslVersion version) = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
__APICALL INetworking& accessNetworking();
|
__APICALL INetworking& accessNetworking();
|
||||||
#undef __APICALL
|
#undef __APICALL
|
||||||
|
@ -17,7 +17,7 @@ TEST(core_semaphore, init) {
|
|||||||
pthread::getThreadId_fake.return_val = 4;
|
pthread::getThreadId_fake.return_val = 4;
|
||||||
|
|
||||||
constexpr int initCount = 1;
|
constexpr int initCount = 1;
|
||||||
constexpr int maxCount = 10;
|
constexpr int maxCount = 10;
|
||||||
|
|
||||||
{
|
{
|
||||||
auto sem = createSemaphore_fifo("test", initCount, maxCount);
|
auto sem = createSemaphore_fifo("test", initCount, maxCount);
|
||||||
@ -39,7 +39,7 @@ TEST(core_semaphore, polling_1) {
|
|||||||
pthread::getThreadId_fake.return_val = 4;
|
pthread::getThreadId_fake.return_val = 4;
|
||||||
|
|
||||||
constexpr int initCount = 1;
|
constexpr int initCount = 1;
|
||||||
constexpr int maxCount = 10;
|
constexpr int maxCount = 10;
|
||||||
|
|
||||||
auto sem = createSemaphore_fifo("test", initCount, maxCount);
|
auto sem = createSemaphore_fifo("test", initCount, maxCount);
|
||||||
|
|
||||||
@ -91,7 +91,7 @@ TEST(core_semaphore, signal_1) {
|
|||||||
pthread::getThreadId_fake.return_val = 4;
|
pthread::getThreadId_fake.return_val = 4;
|
||||||
|
|
||||||
constexpr int initCount = 1;
|
constexpr int initCount = 1;
|
||||||
constexpr int maxCount = 10;
|
constexpr int maxCount = 10;
|
||||||
|
|
||||||
auto sem = createSemaphore_fifo("test", initCount, maxCount);
|
auto sem = createSemaphore_fifo("test", initCount, maxCount);
|
||||||
|
|
||||||
@ -121,7 +121,7 @@ TEST(core_semaphore, signal_1) {
|
|||||||
auto fut = std::async(std::launch::async, [&sem] {
|
auto fut = std::async(std::launch::async, [&sem] {
|
||||||
{
|
{
|
||||||
uint32_t micros = 1;
|
uint32_t micros = 1;
|
||||||
auto res = sem->wait(2, µs); // wait timeout
|
auto res = sem->wait(2, µs); // wait timeout
|
||||||
EXPECT_EQ(res, getErr(ErrCode::_ETIMEDOUT));
|
EXPECT_EQ(res, getErr(ErrCode::_ETIMEDOUT));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -138,8 +138,7 @@ TEST(core_semaphore, signal_1) {
|
|||||||
EXPECT_EQ(res, Ok);
|
EXPECT_EQ(res, Ok);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
std::this_thread::sleep_for(
|
std::this_thread::sleep_for(std::chrono::microseconds(100)); // this or mock condition var
|
||||||
std::chrono::microseconds(100)); // this or mock condition var
|
|
||||||
|
|
||||||
auto resSignal = sem->signal(1);
|
auto resSignal = sem->signal(1);
|
||||||
EXPECT_EQ(resSignal, Ok);
|
EXPECT_EQ(resSignal, Ok);
|
||||||
@ -159,7 +158,7 @@ TEST(core_semaphore, signal_2) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
constexpr int initCount = 0;
|
constexpr int initCount = 0;
|
||||||
constexpr int maxCount = 10;
|
constexpr int maxCount = 10;
|
||||||
|
|
||||||
auto sem = createSemaphore_fifo("test", initCount, maxCount);
|
auto sem = createSemaphore_fifo("test", initCount, maxCount);
|
||||||
EXPECT_EQ(sem->getSignalCounter(), 0);
|
EXPECT_EQ(sem->getSignalCounter(), 0);
|
||||||
@ -180,8 +179,7 @@ TEST(core_semaphore, signal_2) {
|
|||||||
EXPECT_EQ(res, Ok);
|
EXPECT_EQ(res, Ok);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
std::this_thread::sleep_for(
|
std::this_thread::sleep_for(std::chrono::microseconds(100)); // this or mock condition var
|
||||||
std::chrono::microseconds(100)); // this or mock condition var
|
|
||||||
|
|
||||||
{
|
{
|
||||||
auto resSignal = sem->signal(2);
|
auto resSignal = sem->signal(2);
|
||||||
@ -216,8 +214,7 @@ TEST(core_semaphore, signal_2) {
|
|||||||
EXPECT_EQ(res, Ok);
|
EXPECT_EQ(res, Ok);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
std::this_thread::sleep_for(
|
std::this_thread::sleep_for(std::chrono::microseconds(100)); // this or mock condition var
|
||||||
std::chrono::microseconds(100)); // this or mock condition var
|
|
||||||
|
|
||||||
{
|
{
|
||||||
auto resSignal = sem->signal(4);
|
auto resSignal = sem->signal(4);
|
||||||
@ -244,7 +241,7 @@ TEST(core_semaphore, signal_exit) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
constexpr int initCount = 0;
|
constexpr int initCount = 0;
|
||||||
constexpr int maxCount = 10;
|
constexpr int maxCount = 10;
|
||||||
|
|
||||||
auto sem = createSemaphore_fifo("test", initCount, maxCount);
|
auto sem = createSemaphore_fifo("test", initCount, maxCount);
|
||||||
EXPECT_EQ(sem->getSignalCounter(), 0);
|
EXPECT_EQ(sem->getSignalCounter(), 0);
|
||||||
@ -262,8 +259,7 @@ TEST(core_semaphore, signal_exit) {
|
|||||||
EXPECT_EQ(res, getErr(ErrCode::_ECANCELED));
|
EXPECT_EQ(res, getErr(ErrCode::_ECANCELED));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
std::this_thread::sleep_for(
|
std::this_thread::sleep_for(std::chrono::microseconds(100)); // this or mock condition var
|
||||||
std::chrono::microseconds(100)); // this or mock condition var
|
|
||||||
|
|
||||||
auto resSignal = sem->signal(2);
|
auto resSignal = sem->signal(2);
|
||||||
EXPECT_EQ(resSignal, Ok);
|
EXPECT_EQ(resSignal, Ok);
|
||||||
|
Loading…
Reference in New Issue
Block a user