Date: Sun, 15 Nov 2015 12:48:42 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r290860 - head/lib/libc/tests/stdio Message-ID: <201511151248.tAFCmgAq044931@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Sun Nov 15 12:48:42 2015 New Revision: 290860 URL: https://svnweb.freebsd.org/changeset/base/290860 Log: Remove unused variables to fix building world Modified: head/lib/libc/tests/stdio/fmemopen2_test.c head/lib/libc/tests/stdio/getdelim_test.c head/lib/libc/tests/stdio/perror_test.c head/lib/libc/tests/stdio/scanfloat_test.c Modified: head/lib/libc/tests/stdio/fmemopen2_test.c ============================================================================== --- head/lib/libc/tests/stdio/fmemopen2_test.c Sun Nov 15 12:44:31 2015 (r290859) +++ head/lib/libc/tests/stdio/fmemopen2_test.c Sun Nov 15 12:48:42 2015 (r290860) @@ -105,10 +105,9 @@ ATF_TC_WITHOUT_HEAD(test_autoalloc); ATF_TC_BODY(test_autoalloc, tc) { /* Let fmemopen allocate the buffer. */ - char str[] = "A quick test"; FILE *fp; long pos; - size_t nofw, nofr, i; + size_t nofw, i; int rc; /* Open a FILE * using fmemopen. */ Modified: head/lib/libc/tests/stdio/getdelim_test.c ============================================================================== --- head/lib/libc/tests/stdio/getdelim_test.c Sun Nov 15 12:44:31 2015 (r290859) +++ head/lib/libc/tests/stdio/getdelim_test.c Sun Nov 15 12:48:42 2015 (r290860) @@ -113,7 +113,6 @@ ATF_TC_BODY(getline_basic, tc) ATF_TC_WITHOUT_HEAD(stream_error); ATF_TC_BODY(stream_error, tc) { - FILE *fp; char *line; size_t linecap; Modified: head/lib/libc/tests/stdio/perror_test.c ============================================================================== --- head/lib/libc/tests/stdio/perror_test.c Sun Nov 15 12:44:31 2015 (r290859) +++ head/lib/libc/tests/stdio/perror_test.c Sun Nov 15 12:48:42 2015 (r290860) @@ -48,7 +48,7 @@ static char tmpfil[PATH_MAX]; ATF_TC_WITHOUT_HEAD(perror_test); ATF_TC_BODY(perror_test, tc) { - char buf[512], lbuf[512]; + char lbuf[512]; int i; char *s; Modified: head/lib/libc/tests/stdio/scanfloat_test.c ============================================================================== --- head/lib/libc/tests/stdio/scanfloat_test.c Sun Nov 15 12:44:31 2015 (r290859) +++ head/lib/libc/tests/stdio/scanfloat_test.c Sun Nov 15 12:48:42 2015 (r290860) @@ -58,7 +58,6 @@ ATF_TC_BODY(normalized_numbers, tc) long double ld = 0.0; double d = 0.0; float f = 0.0; - char *endp; buf[0] = '\0'; ATF_REQUIRE(setlocale(LC_NUMERIC, "")); @@ -157,7 +156,6 @@ ATF_TC_BODY(infinities_and_nans, tc) long double ld = 0.0; double d = 0.0; float f = 0.0; - char *endp; ATF_REQUIRE(setlocale(LC_NUMERIC, "C")); @@ -205,11 +203,8 @@ ATF_TC_BODY(infinities_and_nans, tc) ATF_TC_WITHOUT_HEAD(rounding_tests); ATF_TC_BODY(rounding_tests, tc) { - char buf[128]; long double ld = 0.0; double d = 0.0; - float f = 0.0; - char *endp; ATF_REQUIRE(setlocale(LC_NUMERIC, "C")); @@ -287,10 +282,6 @@ ATF_TC_BODY(rounding_tests, tc) ATF_TC_WITHOUT_HEAD(strtod); ATF_TC_BODY(strtod, tc) { - char buf[128]; - long double ld = 0.0; - double d = 0.0; - float f = 0.0; char *endp; ATF_REQUIRE(setlocale(LC_NUMERIC, "C"));
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511151248.tAFCmgAq044931>