diff options
author | Stefan Sperling <stsp@cvs.openbsd.org> | 2011-04-29 15:26:31 +0000 |
---|---|---|
committer | Stefan Sperling <stsp@cvs.openbsd.org> | 2011-04-29 15:26:31 +0000 |
commit | 4987d6db15963ba91eab3ea35292c1d5e78cdf45 (patch) | |
tree | 6fc5d481b81a05382f5a8392e9f5d490a0a8fbf2 /regress/lib | |
parent | dd2f1e7b2e2ec23babda7f70dcd37d047c9b40b1 (diff) |
uncomment fwprintf and wprintf tests
Diffstat (limited to 'regress/lib')
-rw-r--r-- | regress/lib/libc/orientation/orientation_test.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/regress/lib/libc/orientation/orientation_test.c b/regress/lib/libc/orientation/orientation_test.c index 4af6a3407b3..1067af4f69d 100644 --- a/regress/lib/libc/orientation/orientation_test.c +++ b/regress/lib/libc/orientation/orientation_test.c @@ -1,4 +1,4 @@ -/* $OpenBSD: orientation_test.c,v 1.1 2009/11/21 09:56:10 guenther Exp $ */ +/* $OpenBSD: orientation_test.c,v 1.2 2011/04/29 15:26:30 stsp Exp $ */ /* * Copyright (c) 2009 Philip Guenther @@ -218,7 +218,7 @@ main(int argc, char *argv[]) /* WIDE CHAR TIME! */ - /* the four functions prefixed with "//X" are unimplemented */ + /* the two functions prefixed with "//X" are unimplemented */ /* input */ TEST_WIDE(getwc(f)); @@ -231,7 +231,7 @@ main(int argc, char *argv[]) TEST_WIDE(putwc(L'c', f)); TEST_WIDE(fputwc(L'c', f)); TEST_WIDE(fputws(L"foo", f)); -//X TEST_WIDE(fwprintf(f, L"%s\n", L"foo")); + TEST_WIDE(fwprintf(f, L"%s\n", L"foo")); /* input from stdin */ TEST_WIDE_STD(stdin, getwchar()); @@ -239,7 +239,7 @@ main(int argc, char *argv[]) /* output to stdout */ TEST_WIDE_STD(stdout, putwchar(L'c')); -//X TEST_WIDE_STD(stdout, wprintf(L"foo")); + TEST_WIDE_STD(stdout, wprintf(L"foo")); TEST_UNCHANGED_STD(stderr, perror("foo")); |