From 4987d6db15963ba91eab3ea35292c1d5e78cdf45 Mon Sep 17 00:00:00 2001 From: Stefan Sperling Date: Fri, 29 Apr 2011 15:26:31 +0000 Subject: uncomment fwprintf and wprintf tests --- regress/lib/libc/orientation/orientation_test.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'regress/lib') 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")); -- cgit v1.2.3