13 lines
211 B
C
Executable file
13 lines
211 B
C
Executable file
/* 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);
|
|
}
|