Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tests/lib/libc/ssp The ssp/raw test is useless. Remove it.



details:   https://anonhg.NetBSD.org/src/rev/09d975f92231
branches:  trunk
changeset: 762705:09d975f92231
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Sat Feb 26 02:41:33 2011 +0000

description:
The ssp/raw test is useless.  Remove it.

diffstat:

 tests/lib/libc/ssp/Makefile |   3 +-
 tests/lib/libc/ssp/h_raw.c  |  55 ---------------------------------------------
 tests/lib/libc/ssp/t_ssp.sh |  17 +-------------
 3 files changed, 2 insertions(+), 73 deletions(-)

diffs (114 lines):

diff -r 62086ce44aa0 -r 09d975f92231 tests/lib/libc/ssp/Makefile
--- a/tests/lib/libc/ssp/Makefile       Sat Feb 26 01:17:24 2011 +0000
+++ b/tests/lib/libc/ssp/Makefile       Sat Feb 26 02:41:33 2011 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2010/12/27 02:04:19 pgoyette Exp $
+# $NetBSD: Makefile,v 1.2 2011/02/26 02:41:33 pgoyette Exp $
 
 NOMAN=         # defined
 
@@ -32,7 +32,6 @@
 PROGS+=                h_memcpy
 PROGS+=                h_memmove
 PROGS+=                h_memset
-PROGS+=                h_raw
 PROGS+=                h_read
 PROGS+=                h_readlink
 PROGS+=                h_snprintf
diff -r 62086ce44aa0 -r 09d975f92231 tests/lib/libc/ssp/h_raw.c
--- a/tests/lib/libc/ssp/h_raw.c        Sat Feb 26 01:17:24 2011 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,55 +0,0 @@
-/* $NetBSD: h_raw.c,v 1.1 2010/12/27 02:04:19 pgoyette Exp $ */
-
-/*
- * Copyright (c) 2008 The NetBSD Foundation, Inc.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. 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.
- *
- * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
- * ``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 FOUNDATION OR CONTRIBUTORS
- * 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 <sys/cdefs.h>
-__COPYRIGHT("@(#) Copyright (c) 2008\
- The NetBSD Foundation, inc. All rights reserved.");
-__RCSID("$NetBSD: h_raw.c,v 1.1 2010/12/27 02:04:19 pgoyette Exp $");
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-static void raw(char *, size_t);
-
-static void
-raw(char *b, size_t len) {
-       b[len] = '\0';
-}
-
-int
-main(int argc, char *argv[])
-{
-       char b[10];
-       size_t len = atoi(argv[1]);
-
-       (void)strncpy(b, "0000000000", sizeof(b));
-       raw(b, len);
-       (void)printf("%s\n", b);
-       return 0;
-}
diff -r 62086ce44aa0 -r 09d975f92231 tests/lib/libc/ssp/t_ssp.sh
--- a/tests/lib/libc/ssp/t_ssp.sh       Sat Feb 26 01:17:24 2011 +0000
+++ b/tests/lib/libc/ssp/t_ssp.sh       Sat Feb 26 02:41:33 2011 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: t_ssp.sh,v 1.3 2011/02/25 18:11:53 pgoyette Exp $
+# $NetBSD: t_ssp.sh,v 1.4 2011/02/26 02:41:33 pgoyette Exp $
 #
 # Copyright (c) 2008 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -37,20 +37,6 @@
        eval $2 atf_check -s signal:6 -o ignore -e ignore $1
 }
 
-atf_test_case raw
-raw_head()
-{
-       atf_set "descr" "Checks basic stack protection"
-}
-raw_body()
-{
-       prog="$(atf_get_srcdir)/h_raw"
-
-       atk_skip "Bogus test case"
-#      h_pass "$prog 9"
-#      h_fail "$prog 10"
-}
-
 atf_test_case sprintf
 sprintf_head()
 {
@@ -261,7 +247,6 @@
 
 atf_init_test_cases()
 {
-       atf_add_test_case raw
        atf_add_test_case sprintf
        atf_add_test_case vsprintf
        atf_add_test_case snprintf



Home | Main Index | Thread Index | Old Index