14 lines
211 B
C
14 lines
211 B
C
|
/* Open a file. */
|
||
|
|
||
|
#include <syscall.h>
|
||
|
#include "tests/lib.h"
|
||
|
#include "tests/main.h"
|
||
|
|
||
|
void
|
||
|
test_main (void)
|
||
|
{
|
||
|
int handle = open ("sample.txt");
|
||
|
if (handle < 2)
|
||
|
fail ("open() returned %d", handle);
|
||
|
}
|