mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 10:53:16 +01:00
22 lines
323 B
C
22 lines
323 B
C
/*
|
|
* Main function for all tests
|
|
*
|
|
* Copyright (C) 2009 B Labs Ltd.
|
|
*/
|
|
#include <l4/api/errno.h>
|
|
#include <container.h>
|
|
#include <capability.h>
|
|
#include <thread.h>
|
|
#include <tests.h>
|
|
|
|
int main(void)
|
|
{
|
|
printf("%s: Container %s started\n",
|
|
__CONTAINER__, __CONTAINER_NAME__);
|
|
|
|
capability_test();
|
|
|
|
return 0;
|
|
}
|
|
|