2014-06-08 10:13:29 +04:00
|
|
|
/* This file is part of ToaruOS and is released under the terms
|
|
|
|
* of the NCSA / University of Illinois License - see LICENSE.md
|
|
|
|
* Copyright (C) 2013-2014 Kevin Lange
|
|
|
|
*/
|
2012-09-02 13:24:25 +04:00
|
|
|
#include <stdio.h>
|
2014-04-03 09:50:32 +04:00
|
|
|
#include "lib/testing.h"
|
2012-09-02 13:24:25 +04:00
|
|
|
|
|
|
|
int main(int argc, char * argv[]) {
|
|
|
|
INFO("Hello world!");
|
|
|
|
|
|
|
|
DONE("Finished tests!");
|
|
|
|
}
|