12 lines
205 B
C
12 lines
205 B
C
#include <test_helper.h>
|
|
#include <test_ipc.h>
|
|
#include <spawn/spawn.h>
|
|
|
|
void do_test_ipc(void) {
|
|
struct spawninfo si;
|
|
domainid_t pid;
|
|
|
|
CHECK_ERR(spawn_load_by_name("memeater", &si, &pid));
|
|
}
|
|
|