History log of /netbsd-src/tests/lib/libc/string/Makefile (Results 1 – 15 of 15)
Revision Date Author Comments
# 832d4752 08-Aug-2023 mrg <mrg@NetBSD.org>

introduce new GCC 12 warning disables and use them in a few places

this introduces 4 new warning disable flags:

CC_WNO_MISSING_TEMPLATE_KEYWORD
CC_WNO_REGISTER
CC_WNO_STRINGOP_OVERREAD

introduce new GCC 12 warning disables and use them in a few places

this introduces 4 new warning disable flags:

CC_WNO_MISSING_TEMPLATE_KEYWORD
CC_WNO_REGISTER
CC_WNO_STRINGOP_OVERREAD
CC_WNO_ARRAY_BOUNDS

and documents them in README.warnings. of these, the string op
and array bounds are both problematic (real bugs) and also spurious
(not real bugs), and the other 2 are mostly temporary for older
3rd party code.

add some new uses of CC_WNO_STRINGOP_OVERFLOW.

fix m68k build for gallium and GCC 12.

show more ...


# c4b7a9e7 03-Jun-2023 lukem <lukem@NetBSD.org>

bsd.own.mk: rename GCC_NO_* to CC_WNO_*

Rename compiler-warning-disable variables from
GCC_NO_warning
to
CC_WNO_warning
where warning is the full warning name as used by the compiler.

GCC_NO_IMPL

bsd.own.mk: rename GCC_NO_* to CC_WNO_*

Rename compiler-warning-disable variables from
GCC_NO_warning
to
CC_WNO_warning
where warning is the full warning name as used by the compiler.

GCC_NO_IMPLICIT_FALLTHRU is CC_WNO_IMPLICIT_FALLTHROUGH

Using the convention CC_compilerflag, where compilerflag
is based on the full compiler flag name.

show more ...


# e20f7376 30-Jan-2023 christos <christos@NetBSD.org>

PR/57205: Dag-Erling Smørgrav: Add tests strchrnul(3), fix strchr pasto
from strlen.


# 58c590cd 19-Dec-2019 macallan <macallan@NetBSD.org>

disable string op warnings for t_strcat
now this builds on macppc with gcc 8.3
from riastradh@


# 7e431be0 15-Oct-2018 christos <christos@NetBSD.org>

simple memmem test to show buffer overrun.


# 4e3374a7 26-May-2017 perseant <perseant@NetBSD.org>

Add simple expect-fail test case for strcoll(3)


# 509eb314 23-Jun-2014 shm <shm@NetBSD.org>

Add bm(3) tests


# 9cf8fb38 21-Nov-2011 joerg <joerg@NetBSD.org>

Add test cases for strcspn, strpbrk, strspn, wcscspn, wcspbrk and
wcsspn.


# 54bb1074 07-Jul-2011 jruoho <jruoho@NetBSD.org>

Split out the string tests from t_string.c for consistency.


# 0df0be27 03-Jun-2011 jruoho <jruoho@NetBSD.org>

Add some fundamental checks for memset(3). Prompted by a recent nasty
bug in the Google Android libc.


# 48b4c060 09-May-2011 jruoho <jruoho@NetBSD.org>

Few basic tests for strerror(3).


# 3ca5a7db 26-Dec-2010 pgoyette <pgoyette@NetBSD.org>

Migrate the last of the libc/string/ tests from regress to atf, and
re-enable building of t_popcount


# f03970fd 25-Dec-2010 pgoyette <pgoyette@NetBSD.org>

Migrate J.T.Conklin's public-domain str* tests from regress to atf.

While here, do some clean-up and knf.


# 163086bd 26-Feb-2010 martin <martin@NetBSD.org>

Disable population count test for now, please re-enable once
PR toolchain/42885 is fixed


# 974b291a 21-Jul-2009 joerg <joerg@NetBSD.org>

Add popcount(3) and the long and long long version. Name is inspired by
gnulib, the implementation goes back to the AMD Software Optimizer
guide. A number of platforms will want to replace the C vers

Add popcount(3) and the long and long long version. Name is inspired by
gnulib, the implementation goes back to the AMD Software Optimizer
guide. A number of platforms will want to replace the C version with
assembler code using native instructions.

show more ...