X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-base64.c;h=f707a9e6b1854b093c3a4708710e6c7c6fa76ca5;hb=2c64312ecca19a60629cb929c1ae759109c772b5;hp=2373be862fc3971674ef0e4da87827bb062e57a1;hpb=71f4edb09eed887b1063f0cdb5f1aa167e3e5072;p=gnulib.git diff --git a/tests/test-base64.c b/tests/test-base64.c old mode 100755 new mode 100644 index 2373be862..f707a9e6b --- a/tests/test-base64.c +++ b/tests/test-base64.c @@ -1,33 +1,35 @@ -/* Recode strings between character sets, using iconv. - Copyright (C) 2004 Free Software Foundation, Inc. +/* Self tests for base64. + Copyright (C) 2004, 2008 Free Software Foundation, Inc. Written by Simon Josefsson. - This program is free software; you can redistribute it and/or modify + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2, or (at your option) - any later version. + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ -#include "base64.h" +#include +#include #include +#include #include +#include "base64.h" + int main (int argc, char *argv[]) { const char *in = "abcdefghijklmnop"; const char *b64in = "YWJjZGVmZw=="; char out[255]; - char *p; size_t len; bool ok; @@ -116,7 +118,7 @@ main (int argc, char *argv[]) if (!ok) fprintf (stderr, "decode failed\n"); if (len != 0) - fprintf (stderr, "failure (%d)\n", len); + fprintf (stderr, "failure (%lu)\n", (unsigned long) len); memset (out, 0x42, sizeof (out)); len = 1; @@ -126,7 +128,7 @@ main (int argc, char *argv[]) if (len != 1 || memcmp (out, "abcdefg", 1) != 0) { out[2] = '\0'; - fprintf (stderr, "failure (%d: %s)\n", len, out); + fprintf (stderr, "failure (%lu: %s)\n", (unsigned long) len, out); } memset (out, 0x42, sizeof (out)); @@ -137,7 +139,7 @@ main (int argc, char *argv[]) if (len != 2 || memcmp (out, "abcdefg", 2) != 0) { out[3] = '\0'; - fprintf (stderr, "failure (%d: %s)\n", len, out); + fprintf (stderr, "failure (%lu: %s)\n", (unsigned long) len, out); } memset (out, 0x42, sizeof (out)); @@ -148,7 +150,7 @@ main (int argc, char *argv[]) if (len != 3 || memcmp (out, "abcdefg", 3) != 0) { out[4] = '\0'; - fprintf (stderr, "failure (%d: %s)\n", len, out); + fprintf (stderr, "failure (%lu: %s)\n", (unsigned long) len, out); } memset (out, 0x42, sizeof (out)); @@ -159,7 +161,7 @@ main (int argc, char *argv[]) if (len != 3 || memcmp (out, "abcdefg", 3) != 0) { out[3] = '\0'; - fprintf (stderr, "failure (%d: %s)\n", len, out); + fprintf (stderr, "failure (%lu: %s)\n", (unsigned long) len, out); } memset (out, 0x42, sizeof (out)); @@ -170,7 +172,7 @@ main (int argc, char *argv[]) if (len != 7 || memcmp (out, "abcdefg", 7) != 0) { out[7] = '\0'; - fprintf (stderr, "failure (%d: %s)\n", len, out); + fprintf (stderr, "failure (%lu: %s)\n", (unsigned long) len, out); } return 0;