Re: [LTP] LTP-cpuset test cases

2021-09-10 Thread Cyril Hrubis
s means that you have found a kernel bug. Which means that the bug in the kernel has to be identified and fixed. -- Cyril Hrubis chru...@suse.cz ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list

Re: [LTP] [PATCH] fs/ftest/ftest06.c: Fix too small name string and related failure

2018-08-23 Thread Cyril Hrubis
Hi! This mailing list has been replaced by l...@lists.linux.it long time ago, please send patches to the new list instead. -- Cyril Hrubis chru...@suse.cz -- Check out the vibrant tech community on one of the world's

Re: [LTP] [PATCH] inotify07: Add test for kernel crash during event notification

2018-05-10 Thread Cyril Hrubis
review will have to wait at least a week or two. -- Cyril Hrubis chru...@suse.cz -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _

Re: [LTP] [PATCH] inotify07: Add test for kernel crash during event notification

2018-05-04 Thread Cyril Hrubis
I suppose I should have posted to fsdevel and CC Jan anyway... I do prefer mailing list over pull requests but I work with both. -- Cyril Hrubis chru...@suse.cz -- Check out the vibrant tech community on one of the w

Re: [LTP] [PATCH] inotify07: Add test for kernel crash during event notification

2018-05-03 Thread Cyril Hrubis
Hi! This is the old mailing list that has been abandoned a few years ago when sourceforge had frequent outages, the new one is at l...@lists.linux.it. -- Cyril Hrubis chru...@suse.cz -- Check out the vibrant tech

Re: [LTP] execute group of test cases.

2016-07-25 Thread Cyril Hrubis
4_ioc > netns_comm_ns_exec_ipv6_ioc > netns_comm_ip_ipv4_netlink > netns_comm_ip_ipv6_netlink > netns_comm_ip_ipv4_ioctl > netns_comm_ip_ipv6_ioctl The easiest way is to create custom runtest file, i.e. copy runtest/containers to new file and delete what you do not want to run. Then you can pass the

Re: [LTP] how to cross compile linux test project?

2015-11-09 Thread Cyril Hrubis
shouldn't need anything more than setting up right compiler: $ export CC=arm-buildroot-linux-gnueabi-gcc $ make -- Cyril Hrubis chru...@suse.cz -- Presto, an open source distributed SQL query engine for big data, initially

Re: [LTP] error while compiling ltp statically

2015-10-29 Thread Cyril Hrubis
Hi! This list has been retired, please use l...@lists.linux.it (http://lists.linux.it/listinfo/ltp) instead. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp

Re: [LTP] how to cross compile linux test project?

2015-10-22 Thread Cyril Hrubis
Hi! FYI this list has been abandoned, all discussion now happens on l...@lists.linux.it -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list

Re: [LTP] how to cross compile linux test project?

2015-10-22 Thread Cyril Hrubis
ed all LTP documentation to point to this list so if you, for instance look at README in the LTP git repo it will point you this page as well... -- Cyril Hrubis chru...@suse.cz --

Re: [LTP] [PATCH v2] sched_getattr/sched_getattr01: Add new testcase to test sched_getattr

2015-09-29 Thread Cyril Hrubis
" %u", attr.sched_deadline, DEADLINE_VAL); > + fail++; > + } > + > + if (fail) > + tst_resm(TFAIL, "attributes were read back incorrectly"); > + else > + tst_resm(TPASS, "attributes were read back correctly")

Re: [LTP] [PATCH] cgroup_fj: fixed exit codes in case of not supported tests

2015-09-24 Thread Cyril Hrubis
t; fi > > -exit $ret; > +tst_exit Unless the whole script is converted to the test.sh the exit $ret must stay here, otherwise the return status from the test will be always 0. T

Re: [LTP] [PATCH] cgroup_fj: renamed arguments because the previous ones were not clear.

2015-09-24 Thread Cyril Hrubis
scription <= 50 characters [empty line] longer commit description that may span across multiple lines with lines up to 72 chars long... [empty line] Signed-off-by: ... -- Cyril Hrub

Re: [LTP] [PATCH] Enable including config.mk and features.mk for *clean targets

2015-09-16 Thread Cyril Hrubis
Hi! > Seems like it's a better and more concise solution. Need I to prepare and > send a second version of the PATCH? Ideally yes, if you send a patch I will apply it right away. -- Cyril Hrubis chru...@s

Re: [LTP] Query related to LTP test suite run

2015-09-15 Thread Cyril Hrubis
kernel contains the fix. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list

Re: [LTP] ltp: thp04.c test case

2015-09-15 Thread Cyril Hrubis
d1cdf04b4 -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list

[LTP] This list has been moved

2015-09-14 Thread Cyril Hrubis
Hi! I've just set up auto reply for this list that we have moved to the new list at l...@lists.linux.it. Please do not start a new conversations here and if you have pending patches please resend them to the new list. -- Cyril Hrubis chru...@suse.cz

[LTP] Moving the mailing list

2015-09-09 Thread Cyril Hrubis
and then we will move the discusssion there. -- Cyril Hrubis chru...@suse.cz -- Monitor Your Dynamic Infrastructure at Any Scale With Datadog! Get real-time metrics from all of your servers, apps and tools in one place

Re: [LTP] [PATCH] mprotect04: fix powerpc crash when copying exec_func

2015-09-09 Thread Cyril Hrubis
id *get_func(void *mem) > +static int page_present(void *p) > { > - memcpy(mem, exec_func, getpagesize()); > + int fd; > + > + fd = SAFE_OPEN(cleanup, "page_present", O_WRONLY|O_CREAT, 0644); Why don't we use "/dev/null"? The rest l

Re: [LTP] [PATCH] mprotect04: fix powerpc crash when copying exec_func

2015-09-09 Thread Cyril Hrubis
ight, the memory is not touched in the write_null() function at all. drivers/char/mem.c: static ssize_t write_null(struct file *file, const char __user *buf, size_t count, loff_t *ppos) { return count; } -

Re: [LTP] [PATCH] linux_syscall_numbers: speed up generation

2015-09-08 Thread Cyril Hrubis
Hi! > Replace cat with echo, which should be a builtin function > for most shells. Avoiding to spawn 'cat' for every syscall > entry can save time when generating linux_syscall_numbers.h: Nice catch, acked. -- Cyril Hrubis chru..

Re: [LTP] [PATCH] include/linux_syscall_numbers.h:Delete linux_syscall_numbers.h

2015-09-08 Thread Cyril Hrubis
nds on new enough > machine). Does that still concern anybody? And since Jan pushed a patch that speeds up the script that generates the header significantly we can drop it from git now. I've applied this patch and added a .gitignore record for the header as well, thanks. --

Re: [LTP] [PATCH v2] cpuhotplug_hotplug.sh: fix the return of cpu number

2015-09-08 Thread Cyril Hrubis
ce rest of the file uses four spaces for indentation and pushed, thanks. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list

Re: [LTP] [PATCH] Enable including config.mk and features.mk for *clean targets

2015-09-08 Thread Cyril Hrubis
ps://github.com/linux-test-project/ltp/blob/master/include/mk/env_pre.mk#L98 > > So I've decided to include these configuration files for "clean" target too. > I've supposed that "clean" target may be invoked even if those files don't > exist so I've used error suppre

Re: [LTP] [PATCH] Enable including config.mk and features.mk for *clean targets

2015-09-08 Thread Cyril Hrubis
tibility targets. Not that it's apriory wrong but I would rather be more conservative and only include the config.mk and features.mk. One option would be to add the: -include $(abs_top_builddir)/include/mk/config.mk -include $(abs_top_builddir)/include/mk/features.mk before the ifeq tha

Re: [LTP] [PATCH] cgroup_fj: splited the tests to run them separately

2015-09-08 Thread Cyril Hrubis
+ tst_resm TPASS "case$i($CASETYPE$CASECMD) PASS" > +elif [ $ret -ne 9 ]; then > + tst_resm TFAIL "case$i($CASETYPE$CASECMD)FAIL" > +fi The rest looks good to me. -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH] cgroup_fj: renamed arguments because the previous ones were not clear.

2015-09-07 Thread Cyril Hrubis
Also we may only want to check that the parameter is a numeric so that we can tune the test parameters later (and for other parameters that can be tuned such as number of subgroup as well). The portable way to do that seems to be case statement: case $mount_times in ''|*[!0-9]*) usag

Re: [LTP] [PATCH] Enable including config.mk and features.mk for *clean targets

2015-09-07 Thread Cyril Hrubis
mk files generated by configure does not exist but the tree is not clean. Unless one deletes them manually of course. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list

Re: [LTP] [PATCH] include/linux_syscall_numbers.h:Delete linux_syscall_numbers.h

2015-09-07 Thread Cyril Hrubis
hat still concern anybody? I guess that what you are trying to solve is that the file is not up to date and it's not updated automatically because the timestamp for the *.in files is the same as the linux_syscall_numbers.h since the files were created at the same time when the git was checked up.

Re: [LTP] [PATCH] cpuhotplug_hotplug.sh: fix the return of cpu number

2015-09-07 Thread Cyril Hrubis
; { > -return $(get_present_cpus | wc -w) > + PRESENT_CPUS_NUM=`get_present_cpus | wc -w` > } Passing the value by global variable is ugly. Why don't we echo the value here as: echo $(get_present_cpus |wc -w), or even just call 'get_presnt_cpus |wc -w' and do: if [ $(get_present_cpus_num) -lt 2 ];

[LTP] [ANNOUNCE] The Linux Test Project has been released for SEPTEMBER 2015

2015-09-03 Thread Cyril Hrubis
, comments or questions should go to to our mailing list at ltp-list@lists.sourceforge.net. PS: We had numerous troubles with mailing list on sourceforge, if you are aware of good and free mailing list hosting service please let us know. -- Cyril Hrubis chru...@suse.cz

Re: [LTP] Syscall/io_* tests failing to compile

2015-09-03 Thread Cyril Hrubis
*** [io_destroy01] Error 1 The -laio is missing from the command line, but since you are seeing the failure the HAVE_LIBAIO_H must be defined in config.h. So it's looks like you have hand edited config.h (which is wrong thing to do) after installing the library instead of

Re: [LTP] Syscall/io_* tests failing to compile

2015-09-03 Thread Cyril Hrubis
cannot link against them. If that is the case you can either cross compile the libaio and set right path for linker etc. or set up an arm virtual machine or chroot with qemu arm emulation and compile LTP there. -- Cyril Hrubis chru...@s

Re: [LTP] Test Anything Protocal output

2015-09-02 Thread Cyril Hrubis
f there's something I could look at prior > to the final release. Just now I'm still in the planning and designing phase. I will likely want to discuss the changes before they get commited to LTP, either as patches on ML or as separate git repo.

Re: [LTP] LTP release

2015-09-02 Thread Cyril Hrubis
Hi! I've just pushed last patch that has been requested to be included in the relese. Unless anybody objects I will proceed with tagging the git, uploading the tarballs, etc. tomorrow. If you haven't tested latest git yet, now is the last chance to do so. -- Cyril Hrubis chru...@suse.cz

Re: [LTP] ltp: thp04.c test case

2015-09-02 Thread Cyril Hrubis
Hi! There was no response for about three months. If nobody stands up and fixes the testcase I would go for dropping it since it does not work reliably as it is. -- Cyril Hrubis chru...@suse.cz -- Monitor Your Dynamic

Re: [LTP] LTP release

2015-09-01 Thread Cyril Hrubis
RHEL5.11GA, ns_ifmove.c gives compilation error since 'IFLA_NET_NS_PID' > undeclared in the kernel. Looks like we need a configure check for the enum constant and way to propagate TCONF from the ns_ifmove to the netns_helper.sh. I will look

Re: [LTP] LTP release

2015-09-01 Thread Cyril Hrubis
; network > namespace as it is used in netns testcases. I will rewrite ns_create and > ns_exec > after the release. I was trying to be more defensive and remove everything that is not needed, but I can live with this solutio

Re: [LTP] [PATCH v2] ltp/pounder: Don't let the testing log output to /dev/tty

2015-09-01 Thread Cyril Hrubis
e the release. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list

Re: [LTP] LTP release

2015-09-01 Thread Cyril Hrubis
ill be the case, at least for any released distribution. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list

Re: [LTP] LTP release

2015-09-01 Thread Cyril Hrubis
d in the kernel. Should be fixed in latest git, please test (don't forget to regenerate configure script). -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp

Re: [LTP] LTP release

2015-08-31 Thread Cyril Hrubis
and rewriting it after the release? Everybody: If you have issues with the latest git please report them. And if you haven't tested it yet please do so ASAP. -- Cyril Hrubis chru...@suse.cz

Re: [LTP] Test Anything Protocal output

2015-08-31 Thread Cyril Hrubis
so that each testcase would fork first, then run the real test in it's own virtual terminal, etc. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@

Re: [LTP] Linux 3.10

2015-08-31 Thread Cyril Hrubis
r the testcases are of course welcomed. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list

Re: [LTP] [PATCH 1/2 v3] added helper tools for creating and working with namespaces

2015-08-27 Thread Cyril Hrubis
Hi! ./ns_exec 1234 mnt pid uts ls / seems a bit confusing to me. Maybe use just $2 and comma-separate the names? (Also for ns_create, for consistency.) pid=$(./ns_create pid,mnt,uts,net) ./ns_exec $pid mnt,pid ls / That's a bit harder to parse but you have the point. -- Cyril Hrubis

Re: [LTP] [PATCH 1/2 v3] added helper tools for creating and working with namespaces

2015-08-27 Thread Cyril Hrubis
execve(2) after doing setns on user ns (see capabilities(7), Thread capability sets). Yes, user namespaces are even bigger PITA than pid namespaces. :) Looks like that. -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH 1/2 v3] added helper tools for creating and working with namespaces

2015-08-27 Thread Cyril Hrubis
accept the parameters the same way as the ns_create does, i.e. list of argv parameters. And handle them in two passes, first one would check that the parameters are correct and the second pass would actually call the setns() one by one in the order they were specified. -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH 1/2 v3] added helper tools for creating and working with namespaces

2015-08-27 Thread Cyril Hrubis
new user namespace as well it can succesfully join it. Why do we attempt to join all namespaces in the ns_exec? I guess that we will have to change it to get a list of namespaces to join the same way the ns_create does it. -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH 1/2 v3] added helper tools for creating and working with namespaces

2015-08-26 Thread Cyril Hrubis
the rf |= open_ns_fd(argv[1], user); line above. Unfortunately EINVAL seems to be catch-all error for setns(), any idea what is wrong here? -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH v2] inotify: Add test for inotify mark destruction race

2015-08-25 Thread Cyril Hrubis
? -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list

Re: [LTP] [PATCH] network/tcp_fastopen: fix typo in check_opt() and check_opt_l()

2015-08-25 Thread Cyril Hrubis
Hi! Can we apply this patch before release? Sure, acked. (I wonder how we missed that in the review...) -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp

Re: [LTP] [PATCH v2] inotify: Add test for inotify mark destruction race

2015-08-25 Thread Cyril Hrubis
Hi! Interesting, probably SRCU is much slower with this older kernel. From my experiments 100 iterations isn't quite reliable to trigger the oops in my testing instance. But 400 seem to be good enough. I've changed the nuber of iterations to 400 and pushed it to git, thanks. -- Cyril Hrubis

Re: [LTP] [PATCH] Use cpuctl_test* as TCID for cpuctl_test*.c.

2015-08-20 Thread Cyril Hrubis
Hi! Pushed, thanks. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list

Re: [LTP] [PATCH 2/2 v3] containers/netns tests rewritten

2015-08-20 Thread Cyril Hrubis
. True. Will you remove that kill command on pushing or should I resend the patch v4 ? No need to resend, I will fix that before pusing. -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH 2/2 v3] containers/netns tests rewritten

2015-08-20 Thread Cyril Hrubis
Hi! Pushed with these changes, thanks. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo

Re: [LTP] [PATCH 2/3] ltp/pounder: Don't let the testing log output to /dev/tty

2015-08-20 Thread Cyril Hrubis
when something will write to stdout and not the one we created. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https

Re: [LTP] [PATCH 1/3] ltp/tools: remove the scripts/numa_test.sh file

2015-08-20 Thread Cyril Hrubis
Hi! Pushed, thanks. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list

Re: [LTP] [PATCH] containers: fix dev name in create_veth()

2015-08-20 Thread Cyril Hrubis
Hi! I've just pushed complete rewrite of the testcases, please make sure that netns testcases from latest git works for you. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list

Re: [LTP] [PATCH] netns: adjust the code corresponding to new version iproute's output format

2015-08-20 Thread Cyril Hrubis
Hi! I've just pushed complete rewrite of the testcases, please make sure that netns testcases from latest git works for you. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list

Re: [LTP] LTP release

2015-08-20 Thread Cyril Hrubis
we start pre-release testing, please let us know. If nobody objects I would like to freeze LTP git repository on Monday (24. 08.) and start the pre-release testing. If there are any patches that should be included the release, please let me know. -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH 3/3] pounder/cpufreq: Skip the test if processors are not supported by cpufreq

2015-08-20 Thread Cyril Hrubis
why exactly it was disabled. So I'm hesitant to enable it unless we are sure that the code actually works fine on several distributions. -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH] ltp/pounder: do some cleanup work for pounder21 test suites

2015-08-20 Thread Cyril Hrubis
Hi! Pushed, thanks. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list

Re: [LTP] [PATCH 2/2 v3] containers/netns tests rewritten

2015-08-19 Thread Cyril Hrubis
+ tst_resm TFAIL sysfs affected by a separate namespace +fi + +tst_exit Otherwise I'm ready to push these two patches (I did minor fixes in the first one to silence compiler warnings though). -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH v4 2/2] umount2/umount2_03.c: add UMOUNT_NOFOLLOW flag test

2015-08-19 Thread Cyril Hrubis
Hi! Both pushed, thanks. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list

Re: [LTP] [PATCH 2/2 v3] containers/netns tests rewritten

2015-08-19 Thread Cyril Hrubis
is mistake as well. Since the NS_HANDLE is pid and it may have been reused if there was a lot of forking done on the system meanwhile. Which is unlikely but still possible. -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH] Add capset_check_simple in runtest.

2015-08-18 Thread Cyril Hrubis
) { tst_brkm(TCONF, ...); } #endif /* HAVE_FOO */ +#endif + cleanup(); + tst_exit(); +} -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH] cpuctl: correct wrong TCID

2015-08-18 Thread Cyril Hrubis
to cpuctl_test* to match the filenames. Otherwise these changes looks fine to me. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https

Re: [LTP] Test Patch for diotest6

2015-08-18 Thread Cyril Hrubis
the testcase can work with just two buffers, one gets initialized in each iteration and one is read back and compared with the initialized one. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp

[LTP] LTP release

2015-08-13 Thread Cyril Hrubis
start pre-release testing, please let us know. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists

Re: [LTP] [PATCH] mem/thp: skip thp02/thp03 if system not support hugepage

2015-08-13 Thread Cyril Hrubis
Hi! I've reworded the commit message and the TCONF message a bit and pushed, thanks. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list

Re: [LTP] [PATCH 09/23] network/virt/vlan03: add new test-case

2015-08-12 Thread Cyril Hrubis
Hi! We can use tst_resm there and we would need to provide one more parameter to determine was it PASS or FAIL (the expected result). It will complicate virt_compare_netperf() a bit but still should be OK. That sounds reasonable to me. -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH 16/23] network/virt: add macvtap01 test

2015-08-12 Thread Cyril Hrubis
not support these options. I guess I can live with that, but I don't like it. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https

Re: [LTP] [PATCH 18/23] network/virt: move checking for command support to virt_lib.sh

2015-08-12 Thread Cyril Hrubis
from perl community and JUnit that comes from Jenkins. [1] https://testanything.org/ -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net

Re: [LTP] [PATCH V2] container: new testcase pidns32

2015-08-11 Thread Cyril Hrubis
Hi! Hi, I'm still not entirely convinced about this test. So am I. What about checking that we can do at least MAXNEST levels? -- Cyril Hrubis chru...@suse.cz -- ___ Ltp

Re: [LTP] Lachesis Linux tests

2015-08-11 Thread Cyril Hrubis
Hi! Does the Lachesis is part of LTP? or Its a standalone linux test framework available in opensource. Never heard of it. There is an pdf on lwn net about it but the links to repository are dead. I'm afraid that the project does not exist anymore. -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH] Add tst_wait_record_childstatus function.

2015-08-11 Thread Cyril Hrubis
-project/ltp/wiki/Test-Writing-Guidelines#227-doing-real-test-in-the-child-process -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net

Re: [LTP] [PATCH v2] inotify: Add test for inotify mark destruction race

2015-08-11 Thread Cyril Hrubis
ENOSYS etc. * Added inotify06 binary to gitignore. And checked that it still Opses kernel after these changes, thanks. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list

Re: [LTP] [PATCH 09/23] network/virt/vlan03: add new test-case

2015-08-11 Thread Cyril Hrubis
res=TFAIL + +tst_resm $res done I would rather see the test issuing one PASS/FAIL for each of the asserting here. Why cannot we use tst_resm TPASS/TFAIL in the virt_compare_netperf function? -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH 16/23] network/virt: add macvtap01 test

2015-08-11 Thread Cyril Hrubis
. Configured For All Businesses. Start Your Cloud Today. https://www.gigenetcloud.com/ ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH 17/23] network/virt: add test-case 01 to virt_lib.sh

2015-08-11 Thread Cyril Hrubis
your business. Configured For All Businesses. Start Your Cloud Today. https://www.gigenetcloud.com/ ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH 04/23] network/virt_lib.sh: use ROD_SILENT in cleanup

2015-08-11 Thread Cyril Hrubis
link delete $vx + ROD_SILENT ip link set $vx down + ROD_SILENT ip link delete $vx Do we really want to exit the cleanup if deleting one of the interfaces has failed? -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH 18/23] network/virt: move checking for command support to virt_lib.sh

2015-08-11 Thread Cyril Hrubis
skip one test out of many is annoying, which is why I'm pondering a plan to change bitflags in the test library (both C and bash one) to counters so that we can say how much of the testcase was actually skipped. -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH 19/23] network/virt: add test-case 02 to virt_lib.sh

2015-08-11 Thread Cyril Hrubis
@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https

Re: [LTP] [PATCH 00/23] Add vlan, ipvlan, gre, macvlan interfaces

2015-08-11 Thread Cyril Hrubis
Hi! Most interfaces share the same ip command syntax and the same test scenarious can be applied to them. So rename vxlan directory to more general 'virt' directory and add those interfaces to it. Apart from the minor nitpicks this patchset looks good to me. -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH v3 2/2] umount2/umount2_03.c: add UMOUNT_NOFOLLOW flag test

2015-08-10 Thread Cyril Hrubis
) + tst_release_device(NULL, device); + + tst_rmdir(); +} -- 1.8.4.2 -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https

Re: [LTP] [PATCH v3 1/2] umount2/umount2_02.c: add MNT_EXPIRE flag test

2015-08-10 Thread Cyril Hrubis
void cleanup(void) +{ + if (mount_flag tst_umount(MNTPOINT)) + tst_resm(TWARN | TERRNO, Failed to unmount); + + if (device) + tst_release_device(NULL, device); + + tst_rmdir(); +} -- 1.8.4.2 -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH] Add tst_wait_record_childstatus function.

2015-08-10 Thread Cyril Hrubis
as calling wait(). -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list

Re: [LTP] [PATCH v5 01/11] SAFE_MACROS: Add socket(), bind(), listen(), connect() and getsockname()

2015-08-06 Thread Cyril Hrubis
minutes looks like good choice to me. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp

Re: [LTP] [PATCH v2] ipc/msgrcv: add new testcase msgrcv08

2015-08-06 Thread Cyril Hrubis
the commit message and pushed, thanks. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list

Re: [LTP] [PATCH v2] fcntl/fcntl32.c: add new test

2015-08-06 Thread Cyril Hrubis
to close file); + + tst_rmdir(); +} -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp

Re: [LTP] [PATCH 2/2] fcntl/fcntl33.c: add new test

2015-08-06 Thread Cyril Hrubis
-- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH] netns, when test ipv6 the parent and child can not ping each other successfully

2015-08-05 Thread Cyril Hrubis
the $? in the if will correspond to the return value from the sleep 1 and not from the ping. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list

Re: [LTP] [PATCH] memcg_functinon: testcase_30 function

2015-08-05 Thread Cyril Hrubis
-by: Michal Hocko mho...@suse.cz Signed-off-by: Cyril Hrubis chru...@suse.cz -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https

Re: [LTP] [PATCH] netns, make a verfication to name of virtul network interface card

2015-08-05 Thread Cyril Hrubis
Hi! The current ltp version get name of virtul network interface card with veth62@veth63 in the newest kernel version, But we need a file name with veth62. That looks suspicious, Alexey have you seen this? -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH 2/2] open_posix/shm_unlink: sanity checking after calling pathconf

2015-08-05 Thread Cyril Hrubis
and pushed both patches, thanks. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp

Re: [LTP] [PATCH v5 01/11] SAFE_MACROS: Add socket(), bind(), listen(), connect() and getsockname()

2015-08-05 Thread Cyril Hrubis
, cleanup_fn, + %s:%d: getsockname(%d, %p, %p) failed, file, lineno, + sockfd, addr, addrlen); + } + + return rval; +} -- Cyril Hrubis chru...@suse.cz

Re: [LTP] [PATCH v5 02/11] lib6/runcc.c: Cleanup

2015-08-05 Thread Cyril Hrubis
. Do we want to really keep these? Because they would need a bit more work to make them less ugly... -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list

Re: [LTP] [PATCH v5 02/11] lib6/runcc.c: Cleanup

2015-08-05 Thread Cyril Hrubis
of the testcases. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list

Re: [LTP] [PATCH] numa01.sh: Fix typo

2015-08-04 Thread Cyril Hrubis
Hi! Pushed, thanks. -- Cyril Hrubis chru...@suse.cz -- ___ Ltp-list mailing list Ltp-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ltp-list

Re: [LTP] : Test Cases for libnuma

2015-08-04 Thread Cyril Hrubis
the output from the configure script if it can find usable numa.h and numaif.h. Also please add me in mailing list. Do that yourself on LTP sf.net mailing list page. -- Cyril Hrubis chru...@suse.cz

  1   2   3   4   5   6   7   8   9   10   >