blob: 830bccf38be9ddf4df11d4014ac43cc527831206 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* Opens a file and then tries to close it twice. The second
close must either fail silently or terminate with exit code
-1. */
#include <syscall.h>
#include "tests/lib.h"
#include "tests/main.h"
void
test_main (void)
{
int handle;
CHECK ((handle = open ("sample.txt")) > 1, "open \"sample.txt\"");
msg ("close \"sample.txt\"");
close (handle);
msg ("close \"sample.txt\" again");
close (handle);
}
|