CVS log for src/tests/usr.bin/xlint/lint1/platform_schar.c
Up to [cvs.NetBSD.org] / src / tests / usr.bin / xlint / lint1
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.6: download - view: text, markup, annotated - select for diffs
Sat Jun 8 06:37:06 2024 UTC (6 months ago) by rillig
Branches: MAIN
CVS tags: perseant-exfatfs-base-20240630,
perseant-exfatfs-base,
perseant-exfatfs,
HEAD
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +9 -2
lines
lint: add details to warnings about negative constant to unsigned
Revision 1.5: download - view: text, markup, annotated - select for diffs
Sat Dec 2 23:54:49 2023 UTC (12 months, 1 week ago) by rillig
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +9 -4
lines
tests/lint: add more test cases for nonportable character comparison
Revision 1.4: download - view: text, markup, annotated - select for diffs
Wed Feb 22 22:30:40 2023 UTC (21 months, 2 weeks ago) by rillig
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +2 -3
lines
lint: fix confusing message about nonportable character constants
Revision 1.3: download - view: text, markup, annotated - select for diffs
Wed Feb 22 22:12:35 2023 UTC (21 months, 2 weeks ago) by rillig
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +5 -5
lines
tests/lint: add platform-specific tests
Revision 1.2: download - view: text, markup, annotated - select for diffs
Sun Sep 26 14:28:22 2021 UTC (3 years, 2 months ago) by rillig
Branches: MAIN
CVS tags: 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
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +3 -1
lines
tests/lint: run all platform tests with the same options
Revision 1.1: download - view: text, markup, annotated - select for diffs
Sun Sep 26 03:17:59 2021 UTC (3 years, 2 months ago) by rillig
Branches: MAIN
tests/lint: add tests for platform characteristics
Running lint in usr.bin/make on i386 fails due to this warning:
cond.c(800): warning: argument #3 is converted from 'unsigned char' to
'unsigned int' due to prototype [259]
This warning only occurred on i386 but not on sparc or x86_64. Try to
reproduce the test situation in platform_int.
The platform code in t_integration.sh was not strict enough, it didn't
check for multiple conditions, such as in msg_132_ilp32. That test was
only supposed to run on ILP32 platforms where size_t is unsigned int. It
also ran on sparc, even though size_t is long there.
CVSweb <webmaster@jp.NetBSD.org>