* gdb.base/fileio.c (test_open): Replace O_RDONLY with O_RDWR such
that opening the file succeeds on OpenBSD.
This commit is contained in:
parent
fa5281d02b
commit
005bc093f6
@ -1,3 +1,8 @@
|
||||
2004-02-01 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* gdb.base/fileio.c (test_open): Replace O_RDONLY with O_RDWR such
|
||||
that opening the file succeeds on OpenBSD.
|
||||
|
||||
2004-02-01 Daniel Jacobowitz <drow@mvista.com>
|
||||
|
||||
* gdb.threads/thread-specific.c: New file.
|
||||
|
@ -75,7 +75,7 @@ test_open ()
|
||||
|
||||
/* Test opening */
|
||||
errno = 0;
|
||||
ret = open (FILENAME, O_CREAT | O_TRUNC | O_RDONLY, S_IWUSR | S_IRUSR);
|
||||
ret = open (FILENAME, O_CREAT | O_TRUNC | O_RDWR, S_IWUSR | S_IRUSR);
|
||||
printf ("open 1: ret = %d, errno = %d %s\n", ret, errno,
|
||||
ret >= 0 ? "OK" : "");
|
||||
if (ret >= 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user