12 lines
152 B
C
12 lines
152 B
C
|
/* Tests the halt system call. */
|
||
|
|
||
|
#include "tests/lib.h"
|
||
|
#include "tests/main.h"
|
||
|
|
||
|
void
|
||
|
test_main (void)
|
||
|
{
|
||
|
halt ();
|
||
|
fail ("should have halted");
|
||
|
}
|