d1e794d62b1bf619df8390535e4c2a58899b1145 |
|
30-Jul-2015 |
Cyril Hrubis <chrubis@suse.cz> |
lib: Get rid of unused tst_require_root() callback Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
/external/ltp/testcases/kernel/containers/sysvipc/mesgq_nstest.c
|
526fdf8d8ea3b43b73de7cc25eb754f12702c8d2 |
|
04-Dec-2014 |
Cyril Hrubis <chrubis@suse.cz> |
Change tst_resm() followed by tst_exit() to tst_brkm() Created with coccinelle patch: @@ expression list L; expression C != {TINFO, TPASS}; @@ - tst_resm + tst_brkm (C, + NULL, L); - tst_exit(); Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
/external/ltp/testcases/kernel/containers/sysvipc/mesgq_nstest.c
|
371cf0a03162d0d1c2a9bb69a049a94b84312689 |
|
24-Sep-2014 |
Cyril Hrubis <chrubis@suse.cz> |
Remove returns that follows tst_exit() Removes dead code that is never executed. Created with coccinelle patch: @@ expression E; @@ tst_exit(); -return E; Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
/external/ltp/testcases/kernel/containers/sysvipc/mesgq_nstest.c
|
8a1e52afc5ad935a5dd1bca47b29c5c4481069e8 |
|
23-Sep-2014 |
Cyril Hrubis <chrubis@suse.cz> |
Remove redundant tst_exit() calls. Created with coccinelle patch: @@ @@ tst_exit(); - tst_exit(); Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
/external/ltp/testcases/kernel/containers/sysvipc/mesgq_nstest.c
|
287fdd0d814043a3bc0c332375438e33f39e480a |
|
13-Aug-2014 |
Artem Savkov <asavkov@redhat.com> |
ipcns tests: runipcnstest.sh -> runtest/containers Extracted sysvipc tests from runipcnstest.sh and container_test.sh and added them one by one to runtest/containers. Signed-off-by: Artem Savkov <asavkov@redhat.com>
/external/ltp/testcases/kernel/containers/sysvipc/mesgq_nstest.c
|
45192246690d9c8389f48602dfeb8877d40094bc |
|
08-Jan-2013 |
Monson Shao <jshao@redhat.com> |
containers: delete redundant newline in tst_resm() Some output strings in tst_resm() have ending newline but some have not, and it causes disordered blank line in logfile. Deleting all ending newline makes it uniform and good to read. Signed-off-by: Monson Shao <jshao@redhat.com> Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
/external/ltp/testcases/kernel/containers/sysvipc/mesgq_nstest.c
|
354ebb48db8e66a853a58379a4808d5dcd1ceac3 |
|
07-Dec-2012 |
Wanlong Gao <gaowanlong@cn.fujitsu.com> |
cleanup code indent Cleanup the code indent using: find . -name *.c -exec Lindent {} \; It's really a big change, but can fix almost all of the indent problem in C code, although we can't ensure all of the changes are right, but the error changes are really few. Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
/external/ltp/testcases/kernel/containers/sysvipc/mesgq_nstest.c
|
4548c6cf9bcdd96d8303caa4130ab638b61f8a30 |
|
19-Oct-2012 |
Wanlong Gao <gaowanlong@cn.fujitsu.com> |
Update FSF address find . -type f -exec sed -i 's/675 Mass Ave, Cambridge, MA 02139, USA/51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA/g' {} \; find . -type f -exec sed -i 's/59 Temple Place, Suite 330, Boston, MA 02111-1307 USA/51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA/g' {} \; Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
/external/ltp/testcases/kernel/containers/sysvipc/mesgq_nstest.c
|
ec6edca7aa42b6affd989ef91b5897f96795e40f |
|
18-Oct-2012 |
Chris Dearman <chris@mips.com> |
Add missing newline at end of file This is a scripted change done using the following command: find . -type d -name .git -prune -o \ -type f \! -name \*\~ \! -name .\#\* \ \! -name \*.gz \! -name \*.pdf \! -name \*.patch -print0 | \ xargs -0 sed -i -e '$a\' Signed-off-by: Chris Dearman <chris@mips.com>
/external/ltp/testcases/kernel/containers/sysvipc/mesgq_nstest.c
|
e8530df4da095b0ea36a9ff8118ab5ce906b3e84 |
|
21-Dec-2010 |
Garrett Cooper <yanegomi@gmail.com> |
Fix header include format. All relative includes need to use #include "foo.h", not #include <foo.h>. Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
/external/ltp/testcases/kernel/containers/sysvipc/mesgq_nstest.c
|
2c28215423293e443469a07ae7011135d058b671 |
|
16-Dec-2010 |
Garrett Cooper <yanegomi@gmail.com> |
Style and conformance changes. 1. Strip all leading space. 2. Move tst_exit() to main(). 3. Remove tst_exit() from cleanup(). 4. Remove cluebat comments. 5. Reduce some unnecessary whitespace. Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
/external/ltp/testcases/kernel/containers/sysvipc/mesgq_nstest.c
|
2871c4301384776da2f10aa6c94e37624959fe75 |
|
13-Jan-2009 |
subrata_modak <subrata_modak> |
Sending the new patch along with the batch file to run the tests. Also made small modifications in the mesgq_nstest.c to fix a) the warnings on tst_exit(). b) to remove the global var. And to return correct error num in the batch file runipcnstest.sh. Signed-off-by: Veerendra C <veerendra@in.ibm.com>.
/external/ltp/testcases/kernel/containers/sysvipc/mesgq_nstest.c
|