svn commit: trunk/uClibc/test: stdio

vapier at uclibc.org vapier at uclibc.org
Mon Jan 29 03:59:10 UTC 2007


Author: vapier
Date: 2007-01-28 19:59:09 -0800 (Sun, 28 Jan 2007)
New Revision: 17620

Log:
make sure 64bit output is correct

Added:
   trunk/uClibc/test/stdio/
   trunk/uClibc/test/stdio/64bit.c
   trunk/uClibc/test/stdio/Makefile


Changeset:

Property changes on: trunk/uClibc/test/stdio
___________________________________________________________________
Name: svn:ignore
   + 64bit
*_glibc
*.gdb
*.out


Added: trunk/uClibc/test/stdio/64bit.c
===================================================================
--- trunk/uClibc/test/stdio/64bit.c	                        (rev 0)
+++ trunk/uClibc/test/stdio/64bit.c	2007-01-29 03:59:09 UTC (rev 17620)
@@ -0,0 +1,8 @@
+#include <stdio.h>
+
+int main(void)
+{
+	void *ptr = (void *)-1;
+	printf("%p\n", ptr);
+	return 0;
+}

Added: trunk/uClibc/test/stdio/Makefile
===================================================================
--- trunk/uClibc/test/stdio/Makefile	                        (rev 0)
+++ trunk/uClibc/test/stdio/Makefile	2007-01-29 03:59:09 UTC (rev 17620)
@@ -0,0 +1,6 @@
+# uClibc assert tests
+# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+
+include ../Test.mak
+
+DODIFF_64bit := 1




More information about the uClibc-cvs mailing list