2010-04-15 22:29:17 -07:00
|
|
|
#include "TestSysVShmem.h"
|
|
|
|
|
|
|
|
#include "IPDLUnitTests.h" // fail etc.
|
|
|
|
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace _ipdltest {
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Parent
|
|
|
|
|
|
|
|
void
|
|
|
|
TestSysVShmemParent::Main()
|
|
|
|
{
|
|
|
|
Shmem mem;
|
|
|
|
size_t size = 12345;
|
|
|
|
if (!AllocShmem(size, SharedMemory::TYPE_SYSV, &mem))
|
|
|
|
fail("can't alloc shmem");
|
|
|
|
|
2010-04-26 18:11:40 -07:00
|
|
|
if (0 > mem.GetSysVID())
|
|
|
|
fail("invalid shmem ID");
|
|
|
|
|
2010-04-15 22:29:17 -07:00
|
|
|
if (mem.Size<char>() != size)
|
|
|
|
fail("shmem is wrong size: expected %lu, got %lu",
|
|
|
|
size, mem.Size<char>());
|
|
|
|
|
|
|
|
char* ptr = mem.get<char>();
|
|
|
|
memcpy(ptr, "Hello!", sizeof("Hello!"));
|
|
|
|
if (!SendGive(mem, size))
|
|
|
|
fail("can't send Give()");
|
|
|
|
|
|
|
|
// uncomment the following line for a (nondeterministic) surprise!
|
|
|
|
//char c1 = *ptr; (void)c1;
|
|
|
|
|
|
|
|
// uncomment the following line for a deterministic surprise!
|
|
|
|
//char c2 = *mem.get<char>(); (void)c2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
TestSysVShmemParent::RecvTake(Shmem& mem, const size_t& expectedSize)
|
|
|
|
{
|
|
|
|
if (mem.Size<char>() != expectedSize)
|
|
|
|
fail("expected shmem size %lu, but it has size %lu",
|
|
|
|
expectedSize, mem.Size<char>());
|
|
|
|
|
|
|
|
if (strcmp(mem.get<char>(), "And yourself!"))
|
|
|
|
fail("expected message was not written");
|
|
|
|
|
2010-04-26 18:11:40 -07:00
|
|
|
if (!DeallocShmem(mem))
|
|
|
|
fail("DeallocShmem");
|
|
|
|
|
2010-04-15 22:29:17 -07:00
|
|
|
Close();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Child
|
|
|
|
|
|
|
|
bool
|
|
|
|
TestSysVShmemChild::RecvGive(Shmem& mem, const size_t& expectedSize)
|
|
|
|
{
|
|
|
|
if (mem.Size<char>() != expectedSize)
|
|
|
|
fail("expected shmem size %lu, but it has size %lu",
|
|
|
|
expectedSize, mem.Size<char>());
|
|
|
|
|
|
|
|
if (strcmp(mem.get<char>(), "Hello!"))
|
|
|
|
fail("expected message was not written");
|
|
|
|
|
|
|
|
memcpy(mem.get<char>(), "And yourself!", sizeof("And yourself!"));
|
|
|
|
|
|
|
|
if (!SendTake(mem, expectedSize))
|
|
|
|
fail("can't send Take()");
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace _ipdltest
|
|
|
|
} // namespace mozilla
|