Index: uspace/app/tester/Makefile
===================================================================
--- uspace/app/tester/Makefile	(revision c7bbd8f8f76acb255644cd7a135ae63b802ee692)
+++ uspace/app/tester/Makefile	(revision a85aebde1fe7aa2a70f30bb24c64dade39325a93)
@@ -46,4 +46,5 @@
 	thread/thread1.c \
 	print/print1.c \
+	print/print4.c \
 	fault/fault1.c \
 	fault/fault2.c \
Index: uspace/app/tester/print/print4.c
===================================================================
--- uspace/app/tester/print/print4.c	(revision a85aebde1fe7aa2a70f30bb24c64dade39325a93)
+++ uspace/app/tester/print/print4.c	(revision a85aebde1fe7aa2a70f30bb24c64dade39325a93)
@@ -0,0 +1,90 @@
+/*
+ * Copyright (c) 2009 Martin Decky
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * - Redistributions of source code must retain the above copyright
+ *   notice, this list of conditions and the following disclaimer.
+ * - Redistributions in binary form must reproduce the above copyright
+ *   notice, this list of conditions and the following disclaimer in the
+ *   documentation and/or other materials provided with the distribution.
+ * - The name of the author may not be used to endorse or promote products
+ *   derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <stdio.h>
+#include <unistd.h>
+#include "../tester.h"
+
+#define PRIx8 "x"
+
+char *test_print4(bool quiet)
+{
+	if (!quiet) {
+		printf("ASCII printable characters (32 - 127) using printf(\"%%c\") and printf(\"%%lc\"):\n");
+		
+		uint8_t group;
+		for (group = 1; group < 4; group++) {
+			printf("%#" PRIx8 ": ", group << 5);
+			
+			uint8_t index;
+			for (index = 0; index < 32; index++)
+				printf("%c", (char) ((group << 5) + index));
+			
+			printf("  ");
+			for (index = 0; index < 32; index++)
+				printf("%lc", (wchar_t) ((group << 5) + index));
+			
+			printf("\n");
+		}
+		
+		printf("\nExtended ASCII characters (128 - 255) using printf(\"%%lc\"):\n");
+		
+		for (group = 4; group < 8; group++) {
+			printf("%#" PRIx8 ": ", group << 5);
+			
+			uint8_t index;
+			for (index = 0; index < 32; index++)
+				printf("%lc", (wchar_t) ((group << 5) + index));
+			
+			printf("\n");
+		}
+		
+		printf("\nUTF-8 strings using printf(\"%%s\"):\n");
+		printf("English:  %s\n", "Quick brown fox jumps over the lazy dog");
+		printf("Czech:    %s\n", "Příliš žluťoučký kůň úpěl ďábelské ódy");
+		printf("Greek:    %s\n", "Ὦ ξεῖν’, ἀγγέλλειν Λακεδαιμονίοις ὅτι τῇδε");
+		printf("Hebrew:   %s\n", "משוואת ברנולי היא משוואה בהידרודינמיקה");
+		printf("Arabic:   %s\n", "التوزيع الجغرافي للحمل العنقودي");
+		printf("Russian:  %s\n", "Леннон познакомился с художницей-авангардисткой");
+		printf("Armenian: %s\n", "Սկսեց հրատարակվել Երուսաղեմի հայկական");
+		
+		printf("\nUTF-32 strings using printf(\"%%ls\"):\n");
+		printf("English:  %ls\n", L"Quick brown fox jumps over the lazy dog");
+		printf("Czech:    %ls\n", L"Příliš žluťoučký kůň úpěl ďábelské ódy");
+		printf("Greek:    %ls\n", L"Ὦ ξεῖν’, ἀγγέλλειν Λακεδαιμονίοις ὅτι τῇδε");
+		printf("Hebrew:   %ls\n", L"משוואת ברנולי היא משוואה בהידרודינמיקה");
+		printf("Arabic:   %ls\n", L"التوزيع الجغرافي للحمل العنقودي");
+		printf("Russian:  %ls\n", L"Леннон познакомился с художницей-авангардисткой");
+		printf("Armenian: %ls\n", L"Սկսեց հրատարակվել Երուսաղեմի հայկական");
+	}
+
+	printf("[Press a key]\n");
+	getchar();
+	
+	return NULL;
+}
Index: uspace/app/tester/print/print4.def
===================================================================
--- uspace/app/tester/print/print4.def	(revision a85aebde1fe7aa2a70f30bb24c64dade39325a93)
+++ uspace/app/tester/print/print4.def	(revision a85aebde1fe7aa2a70f30bb24c64dade39325a93)
@@ -0,0 +1,6 @@
+{
+	"print4",
+	"Unicode test",
+	&test_print4,
+	true
+},
Index: uspace/app/tester/tester.c
===================================================================
--- uspace/app/tester/tester.c	(revision c7bbd8f8f76acb255644cd7a135ae63b802ee692)
+++ uspace/app/tester/tester.c	(revision a85aebde1fe7aa2a70f30bb24c64dade39325a93)
@@ -48,4 +48,5 @@
 #include "thread/thread1.def"
 #include "print/print1.def"
+#include "print/print4.def"
 #include "fault/fault1.def"
 #include "fault/fault2.def"
Index: uspace/app/tester/tester.h
===================================================================
--- uspace/app/tester/tester.h	(revision c7bbd8f8f76acb255644cd7a135ae63b802ee692)
+++ uspace/app/tester/tester.h	(revision a85aebde1fe7aa2a70f30bb24c64dade39325a93)
@@ -61,4 +61,5 @@
 extern char * test_thread1(bool quiet);
 extern char * test_print1(bool quiet);
+extern char * test_print4(bool quiet);
 extern char * test_fault1(bool quiet);
 extern char * test_fault2(bool quiet);
