CVS commit: src/tests/lib/libc/ssp

2017-01-16 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Mon Jan 16 16:35:57 UTC 2017 Modified Files: src/tests/lib/libc/ssp: h_read.c Log Message: PR/51894: Ngie Cooper: Use /dev/zero to read instead of stdin To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2

CVS commit: src/tests/lib/libc/ssp

2017-01-16 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Mon Jan 16 16:34:24 UTC 2017 Modified Files: src/tests/lib/libc/ssp: h_memset.c Log Message: PR/51893: Ngie Cooper: prevent toolchain from optimizing out memset call To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2

CVS commit: src/tests/lib/libc/ssp

2014-04-07 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Mon Apr 7 15:09:20 UTC 2014 Modified Files: src/tests/lib/libc/ssp: h_stpncpy.c Log Message: fix lossage with gcc-4.5 To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libc/ssp/h_stpncpy.c Please

CVS commit: src/tests/lib/libc/ssp

2014-04-06 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Apr 6 19:28:59 UTC 2014 Modified Files: src/tests/lib/libc/ssp: Makefile t_ssp.sh Added Files: src/tests/lib/libc/ssp: h_stpcpy.c h_stpncpy.c Log Message: add stp*cpy() tests To generate a diff of this commit:

CVS commit: src/tests/lib/libc/ssp

2014-01-10 Thread Martin Husemann
Module Name:src Committed By: martin Date: Fri Jan 10 10:45:34 UTC 2014 Modified Files: src/tests/lib/libc/ssp: t_ssp.sh Log Message: In the strcat test, smash the stack more severely (this all may depend on alignment and stack frame details). The gcc folks disagree with

CVS commit: src/tests/lib/libc/ssp

2011-07-24 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Jul 24 14:00:36 UTC 2011 Modified Files: src/tests/lib/libc/ssp: h_raw.c Log Message: make sum volatile to avoid printing To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/tests/lib/libc/ssp/h_raw.c Please

CVS commit: src/tests/lib/libc/ssp

2011-07-23 Thread Martin Husemann
Module Name:src Committed By: martin Date: Sat Jul 23 22:17:43 UTC 2011 Modified Files: src/tests/lib/libc/ssp: h_raw.c Log Message: gcc optimizes away the side effect free call to the poke function which is supposed to smash our stack in this test case. So: make it print

CVS commit: src/tests/lib/libc/ssp

2011-06-15 Thread Iain Hibbert
Module Name:src Committed By: plunky Date: Wed Jun 15 06:09:22 UTC 2011 Modified Files: src/tests/lib/libc/ssp: h_raw.c Log Message: gcc seems to pad small character arrays, use an array of ints while here, make the poke function non-static, so that it doesnt get

CVS commit: src/tests/lib/libc/ssp

2011-06-12 Thread Iain Hibbert
Module Name:src Committed By: plunky Date: Sun Jun 12 19:22:02 UTC 2011 Modified Files: src/tests/lib/libc/ssp: Makefile Log Message: don't pass -fstack-protector for these, the tests are actually for the __*_chk functions included by -D_FORTIFY_SOURCE=2, and if the

CVS commit: src/tests/lib/libc/ssp

2011-02-25 Thread Paul Goyette
Module Name:src Committed By: pgoyette Date: Fri Feb 25 18:11:53 UTC 2011 Modified Files: src/tests/lib/libc/ssp: t_ssp.sh Log Message: Disable the raw test case. The test is bogus, and did not work before conversion from src/regress/ to atf To generate a diff of this

CVS commit: src/tests/lib/libc/ssp

2011-02-25 Thread Paul Goyette
Module Name:src Committed By: pgoyette Date: Sat Feb 26 02:41:34 UTC 2011 Modified Files: src/tests/lib/libc/ssp: Makefile t_ssp.sh Removed Files: src/tests/lib/libc/ssp: h_raw.c Log Message: The ssp/raw test is useless. Remove it. To generate a diff of this

CVS commit: src/tests/lib/libc/ssp

2010-12-28 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Tue Dec 28 16:18:46 UTC 2010 Modified Files: src/tests/lib/libc/ssp: h_vsnprintf.c h_vsprintf.c Log Message: allocate the buffer at the same function level as the compiler so that the compiler knows to emit the right _chk call.

CVS commit: src/tests/lib/libc/ssp

2010-12-26 Thread Paul Goyette
Module Name:src Committed By: pgoyette Date: Mon Dec 27 05:27:34 UTC 2010 Modified Files: src/tests/lib/libc/ssp: t_ssp.sh Log Message: Since atf_check doesn't deal with a pipeline, modify the tests to pipe the output of the echo commands to atf_check itself. This fixes