The NetBSD Project

CVS log for src/tests/lib/libc/string/Makefile

[BACK] Up to [cvs.NetBSD.org] / src / tests / lib / libc / string

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.15: download - view: text, markup, annotated - select for diffs
Tue Aug 8 06:27:32 2023 UTC (16 months ago) by mrg
Branches: MAIN
CVS tags: perseant-exfatfs-base-20240630, perseant-exfatfs-base, perseant-exfatfs, HEAD
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +4 -1 lines
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.

Revision 1.14: download - view: text, markup, annotated - select for diffs
Sat Jun 3 09:09:15 2023 UTC (18 months, 1 week ago) by lukem
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +2 -2 lines
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.

Revision 1.13: download - view: text, markup, annotated - select for diffs
Mon Jan 30 19:49:49 2023 UTC (22 months, 1 week ago) by christos
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +2 -1 lines
PR/57205: Dag-Erling Smørgrav: Add tests strchrnul(3), fix strchr pasto
from strlen.

Revision 1.10.10.2: download - view: text, markup, annotated - select for diffs
Wed Apr 8 14:09:09 2020 UTC (4 years, 8 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.10.10.1: preferred, colored; branchpoint 1.10: preferred, colored; next MAIN 1.11: preferred, colored
Changes since revision 1.10.10.1: +3 -1 lines
Merge changes from current as of 20200406

Revision 1.12: download - view: text, markup, annotated - select for diffs
Thu Dec 19 19:19:28 2019 UTC (4 years, 11 months ago) by macallan
Branches: MAIN
CVS tags: phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, netbsd-10-base, netbsd-10-0-RELEASE, netbsd-10-0-RC6, netbsd-10-0-RC5, netbsd-10-0-RC4, netbsd-10-0-RC3, netbsd-10-0-RC2, netbsd-10-0-RC1, netbsd-10, is-mlppp-base, is-mlppp, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +3 -1 lines
disable string op warnings for t_strcat
now this builds on macppc with gcc 8.3
from riastradh@

Revision 1.10.10.1: download - view: text, markup, annotated - select for diffs
Mon Jun 10 22:10:05 2019 UTC (5 years, 6 months ago) by christos
Branches: phil-wifi
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +2 -1 lines
Sync with HEAD

Revision 1.10.8.1: download - view: text, markup, annotated - select for diffs
Sat Oct 20 06:58:46 2018 UTC (6 years, 1 month ago) by pgoyette
Branches: pgoyette-compat
CVS tags: pgoyette-compat-merge-20190127
Diff to: previous 1.10: preferred, colored; next MAIN 1.11: preferred, colored
Changes since revision 1.10: +2 -1 lines
Sync with head

Revision 1.11: download - view: text, markup, annotated - select for diffs
Mon Oct 15 17:55:28 2018 UTC (6 years, 1 month ago) by christos
Branches: MAIN
CVS tags: phil-wifi-20191119, phil-wifi-20190609, pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, netbsd-9-base, netbsd-9-4-RELEASE, netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1, netbsd-9
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +2 -1 lines
simple memmem test to show buffer overrun.

Revision 1.10: download - view: text, markup, annotated - select for diffs
Fri May 26 01:24:19 2017 UTC (7 years, 6 months ago) by perseant
Branches: MAIN
CVS tags: phil-wifi-base, pgoyette-compat-base, pgoyette-compat-0930, pgoyette-compat-0906, pgoyette-compat-0728, pgoyette-compat-0625, pgoyette-compat-0521, pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315, perseant-stdc-iso10646-base, perseant-stdc-iso10646, netbsd-8-base, netbsd-8-3-RELEASE, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, netbsd-8, matt-nb8-mediatek-base, matt-nb8-mediatek
Branch point for: phil-wifi, pgoyette-compat
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +2 -1 lines
Add simple expect-fail test case for strcoll(3)

Revision 1.8.6.1: download - view: text, markup, annotated - select for diffs
Wed Aug 20 00:04:50 2014 UTC (10 years, 3 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.8: preferred, colored; next MAIN 1.9: preferred, colored
Changes since revision 1.8: +2 -1 lines
Rebase to HEAD as of a few days ago.

Revision 1.8.16.1: download - view: text, markup, annotated - select for diffs
Sun Aug 10 06:57:21 2014 UTC (10 years, 4 months ago) by tls
Branches: tls-earlyentropy
Diff to: previous 1.8: preferred, colored; next MAIN 1.9: preferred, colored
Changes since revision 1.8: +2 -1 lines
Rebase.

Revision 1.9: download - view: text, markup, annotated - select for diffs
Mon Jun 23 10:53:20 2014 UTC (10 years, 5 months ago) by shm
Branches: MAIN
CVS tags: tls-maxphys-base, tls-earlyentropy-base, prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, pgoyette-localcount-base, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, pgoyette-localcount, netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, netbsd-7-base, netbsd-7-2-RELEASE, netbsd-7-1-RELEASE, netbsd-7-1-RC2, netbsd-7-1-RC1, netbsd-7-1-2-RELEASE, netbsd-7-1-1-RELEASE, netbsd-7-1, netbsd-7-0-RELEASE, netbsd-7-0-RC3, netbsd-7-0-RC2, netbsd-7-0-RC1, netbsd-7-0-2-RELEASE, netbsd-7-0-1-RELEASE, netbsd-7-0, netbsd-7, localcount-20160914, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +2 -1 lines
Add bm(3) tests

Revision 1.7.2.1: download - view: text, markup, annotated - select for diffs
Tue Apr 17 00:09:12 2012 UTC (12 years, 7 months ago) by yamt
Branches: yamt-pagecache
CVS tags: yamt-pagecache-tag8
Diff to: previous 1.7: preferred, colored; next MAIN 1.8: preferred, colored
Changes since revision 1.7: +4 -1 lines
sync with head

Revision 1.8: download - view: text, markup, annotated - select for diffs
Mon Nov 21 23:50:45 2011 UTC (13 years ago) by joerg
Branches: MAIN
CVS tags: yamt-pagecache-base9, yamt-pagecache-base8, yamt-pagecache-base7, yamt-pagecache-base6, yamt-pagecache-base5, yamt-pagecache-base4, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3, riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2, netbsd-6-base, netbsd-6-1-RELEASE, netbsd-6-1-RC4, netbsd-6-1-RC3, netbsd-6-1-RC2, netbsd-6-1-RC1, netbsd-6-1-5-RELEASE, netbsd-6-1-4-RELEASE, netbsd-6-1-3-RELEASE, netbsd-6-1-2-RELEASE, netbsd-6-1-1-RELEASE, netbsd-6-1, netbsd-6-0-RELEASE, netbsd-6-0-RC2, netbsd-6-0-RC1, netbsd-6-0-6-RELEASE, netbsd-6-0-5-RELEASE, netbsd-6-0-4-RELEASE, netbsd-6-0-3-RELEASE, netbsd-6-0-2-RELEASE, netbsd-6-0-1-RELEASE, netbsd-6-0, netbsd-6, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus, agc-symver-base, agc-symver
Branch point for: tls-maxphys, tls-earlyentropy
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +4 -1 lines
Add test cases for strcspn, strpbrk, strspn, wcscspn, wcspbrk and
wcsspn.

Revision 1.7: download - view: text, markup, annotated - select for diffs
Thu Jul 7 08:59:33 2011 UTC (13 years, 5 months ago) by jruoho
Branches: MAIN
CVS tags: yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base
Branch point for: yamt-pagecache
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +10 -2 lines
Split out the string tests from t_string.c for consistency.

Revision 1.5.2.1: download - view: text, markup, annotated - select for diffs
Thu Jun 23 14:20:40 2011 UTC (13 years, 5 months ago) by cherry
Branches: cherry-xenmp
Diff to: previous 1.5: preferred, colored; next MAIN 1.6: preferred, colored
Changes since revision 1.5: +2 -1 lines
Catchup with rmind-uvmplock merge.

Revision 1.6: download - view: text, markup, annotated - select for diffs
Fri Jun 3 06:39:52 2011 UTC (13 years, 6 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +2 -1 lines
Add some fundamental checks for memset(3). Prompted by a recent nasty
bug in the Google Android libc.

Revision 1.5: download - view: text, markup, annotated - select for diffs
Mon May 9 06:04:14 2011 UTC (13 years, 7 months ago) by jruoho
Branches: MAIN
CVS tags: cherry-xenmp-base
Branch point for: cherry-xenmp
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +2 -1 lines
Few basic tests for strerror(3).

Revision 1.4: download - view: text, markup, annotated - select for diffs
Sun Dec 26 13:35:54 2010 UTC (13 years, 11 months ago) by pgoyette
Branches: MAIN
CVS tags: matt-mips64-premerge-20101231, bouyer-quota2-nbase, bouyer-quota2-base, bouyer-quota2
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +6 -4 lines
Migrate the last of the libc/string/ tests from regress to atf, and
re-enable building of t_popcount

Revision 1.3: download - view: text, markup, annotated - select for diffs
Sat Dec 25 21:10:24 2010 UTC (13 years, 11 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +5 -3 lines
Migrate J.T.Conklin's public-domain str* tests from regress to atf.

While here, do some clean-up and knf.

Revision 1.2: download - view: text, markup, annotated - select for diffs
Fri Feb 26 09:35:08 2010 UTC (14 years, 9 months ago) by martin
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +2 -1 lines
Disable population count test for now, please re-enable once
PR toolchain/42885 is fixed

Revision 1.1: download - view: text, markup, annotated - select for diffs
Tue Jul 21 13:18:44 2009 UTC (15 years, 4 months ago) by joerg
Branches: MAIN
CVS tags: matt-premerge-20091211
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.

Diff request

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Log view options

CVSweb <webmaster@jp.NetBSD.org>