* 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:
Mark Kettenis 2004-02-01 18:51:29 +00:00
parent fa5281d02b
commit 005bc093f6
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View 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)