This repository has been archived on 2021-05-26. You can view files and clone it, but cannot push or open issues or pull requests.
OS/pintos-env/pintos/tests/main.c

16 lines
217 B
C
Raw Normal View History

#include <random.h>
#include "tests/lib.h"
#include "tests/main.h"
int
main (int argc UNUSED, char *argv[])
{
test_name = argv[0];
msg ("begin");
random_init (0);
test_main ();
msg ("end");
return 0;
}