All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP] Rename tst_test_* to tst_require_*
@ 2019-10-11  9:07 Joerg Vehlow
  2019-10-11  9:07 ` [LTP] [PATCH 1/2] shell: Rename s/tst_test_cmds/tst_require_cmds/ Joerg Vehlow
                   ` (2 more replies)
  0 siblings, 3 replies; 16+ messages in thread
From: Joerg Vehlow @ 2019-10-11  9:07 UTC (permalink / raw)
  To: ltp

Hi,

these patches rename tst_test_* to tst_require_*, to better describe
their use. There is also tst_require_root, that has the same
behavior: It also calls tst_brk in case of a failing requirement.

You can also get this patch from the following repo:
https://github.com/MofX/ltp/commits/rename_tst_test-tst_require

J?rg

doc/test-writing-guidelines.txt                                                      |  2 +-
testcases/commands/mkfs/mkfs01.sh                                                    |  2 +-
testcases/kernel/containers/netns/netns_breakns.sh                                   |  2 +-
testcases/kernel/containers/netns/netns_helper.sh                                    |  4 ++--
testcases/kernel/controllers/cgroup_fj/cgroup_fj_common.sh                           |  2 +-
testcases/kernel/controllers/memcg/functional/memcg_lib.sh                           |  4 ++--
testcases/kernel/device-drivers/zram/zram01.sh                                       |  2 +-
testcases/kernel/device-drivers/zram/zram_lib.sh                                     |  6 +++---
testcases/kernel/fs/ext4-new-features/ext4-delalloc-mballoc/ext4-alloc-test.sh       |  2 +-
testcases/kernel/fs/ext4-new-features/ext4-journal-checksum/ext4_journal_checksum.sh |  2 +-
testcases/kernel/fs/ext4-new-features/ext4-online-defrag/ext4_online_defrag_test.sh  |  4 ++--
testcases/kernel/fs/ext4-new-features/ext4-uninit-groups/ext4_uninit_groups_test.sh  |  2 +-
testcases/kernel/fs/iso9660/isofs.sh                                                 |  2 +-
testcases/kernel/hotplug/cpu_hotplug/functional/cpuhotplug01.sh                      |  2 +-
testcases/kernel/hotplug/cpu_hotplug/functional/cpuhotplug05.sh                      |  2 +-
testcases/kernel/io/stress_floppy/stress_floppy                                      |  2 +-
testcases/kernel/power_management/runpwtests05.sh                                    |  2 +-
testcases/kernel/power_management/runpwtests_exclusive01.sh                          |  2 +-
testcases/kernel/power_management/runpwtests_exclusive02.sh                          |  2 +-
testcases/kernel/power_management/runpwtests_exclusive03.sh                          |  2 +-
testcases/kernel/power_management/runpwtests_exclusive04.sh                          |  2 +-
testcases/kernel/power_management/runpwtests_exclusive05.sh                          |  2 +-
testcases/lib/test.sh                                                                |  2 +-
testcases/lib/tst_net.sh                                                             | 10 +++++-----
testcases/lib/tst_test.sh                                                            | 12 ++++++------
testcases/network/multicast/mc_commo/mc_commo.sh                                     |  2 +-
testcases/network/multicast/mc_member/mc_member.sh                                   |  2 +-
testcases/network/stress/dns/dns-stress.sh                                           |  2 +-
testcases/network/stress/ftp/ftp-download-stress.sh                                  |  2 +-
testcases/network/stress/ftp/ftp-download-stress01-rmt.sh                            |  2 +-
testcases/network/stress/ftp/ftp-download-stress02-rmt.sh                            |  2 +-
testcases/network/stress/ftp/ftp-upload-stress.sh                                    |  4 ++--
testcases/network/stress/ftp/ftp-upload-stress01-rmt.sh                              |  2 +-
testcases/network/stress/ftp/ftp-upload-stress02-rmt.sh                              |  2 +-
testcases/network/stress/http/http-stress01-rmt.sh                                   |  2 +-
testcases/network/stress/http/http-stress02-rmt.sh                                   |  2 +-
testcases/network/stress/interface/if-lib.sh                                         |  2 +-
testcases/network/stress/ns-tools/tst_net_stress.sh                                  |  2 +-
testcases/network/stress/ssh/ssh-stress.sh                                           |  2 +-
testcases/network/tcp_cmds/ipneigh/ipneigh01.sh                                      |  2 +-
testcases/network/tcp_cmds/ping/ping01.sh                                            |  2 +-
testcases/network/tcp_cmds/ping/ping02.sh                                            |  2 +-
testcases/network/tcp_cmds/rlogin/rlogin01.sh                                        |  2 +-
testcases/network/tcp_cmds/sendfile/sendfile01.sh                                    |  2 +-
testcases/network/tcp_cmds/tcpdump/tcpdump01.sh                                      |  2 +-
testcases/network/tcp_cmds/telnet/telnet01.sh                                        |  2 +-
testcases/network/tcp_cmds/tracepath/tracepath01.sh                                  |  2 +-
testcases/network/virt/virt_lib.sh                                                   |  4 ++--
testcases/network/xinetd/xinetd_tests.sh                                             |  2 +-
49 files changed, 65 insertions(+), 65 deletions(-)




^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2019-11-07 11:32 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-11  9:07 [LTP] Rename tst_test_* to tst_require_* Joerg Vehlow
2019-10-11  9:07 ` [LTP] [PATCH 1/2] shell: Rename s/tst_test_cmds/tst_require_cmds/ Joerg Vehlow
2019-10-11  9:07 ` [LTP] [PATCH 2/2] shell: Rename s/tst_test_drivers/tst_require_drivers/ Joerg Vehlow
2019-10-11 10:06 ` [LTP] Rename tst_test_* to tst_require_* Petr Vorel
2019-10-11 12:36   ` Cyril Hrubis
2019-10-11 13:03   ` Clemens Famulla-Conrad
2019-10-11 13:10     ` Cyril Hrubis
2019-10-11 14:00       ` Petr Vorel
2019-10-24 12:28         ` Cyril Hrubis
2019-10-24 12:48           ` Petr Vorel
2019-11-06 16:26             ` Cyril Hrubis
2019-11-06 17:01               ` Petr Vorel
2019-11-07 11:09                 ` Petr Vorel
2019-11-07 11:32               ` Petr Vorel
2019-10-11 13:28     ` Li Wang
2019-10-11 13:39     ` Joerg Vehlow

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.