All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP] [PATCH 1/2] doc/user-guide: Shorten the description
@ 2020-09-29 10:58 Petr Vorel
  2020-09-29 10:58 ` [LTP] [PATCH 2/2] doc/user-guide: Document block device variables Petr Vorel
  2020-09-29 11:33 ` [LTP] [PATCH 1/2] doc/user-guide: Shorten the description Li Wang
  0 siblings, 2 replies; 4+ messages in thread
From: Petr Vorel @ 2020-09-29 10:58 UTC (permalink / raw)
  To: ltp

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 doc/user-guide.txt | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc/user-guide.txt b/doc/user-guide.txt
index 13865bc88..5cb8322cf 100644
--- a/doc/user-guide.txt
+++ b/doc/user-guide.txt
@@ -1,7 +1,7 @@
 LTP User Guidelines
 ===================
 
-For compiling and installing and running the tests see `README.md`.
+For compiling, installing and running the tests see `README.md`.
 For running LTP network tests see `testcases/network/README.md`.
 
 1. Library environment variables
@@ -18,8 +18,8 @@ For running LTP network tests see `testcases/network/README.md`.
                           Variable is also used in shell tests, but ceiled to int.
 | 'PATH'                | It's required to addjust path:
                           `PATH="$PATH:$LTPROOT/testcases/bin"`
-| 'TMPDIR'              | Base directory for template directory, which is required by C tests
-                          `tst_test->needs_tmpdir=1` (or others) or shell 'TST_NEEDS_TMPDIR=1').
+| 'TMPDIR'              | Base directory for template directory (C: '.needs_tmpdir = 1'
+                          and others, which imply it, shell: 'TST_NEEDS_TMPDIR=1').
 | 'TST_NO_CLEANUP'      | Disable running test cleanup (defined in 'TST_CLEANUP').
 |==============================================================================
 
-- 
2.28.0


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

* [LTP] [PATCH 2/2] doc/user-guide: Document block device variables
  2020-09-29 10:58 [LTP] [PATCH 1/2] doc/user-guide: Shorten the description Petr Vorel
@ 2020-09-29 10:58 ` Petr Vorel
  2020-09-29 11:33 ` [LTP] [PATCH 1/2] doc/user-guide: Shorten the description Li Wang
  1 sibling, 0 replies; 4+ messages in thread
From: Petr Vorel @ 2020-09-29 10:58 UTC (permalink / raw)
  To: ltp

NOTE: LTP_BIG_DEV{,FS_TYPE} omitted, because used only
in dma_thread_diotest.c which is using legacy API.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 doc/user-guide.txt | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/doc/user-guide.txt b/doc/user-guide.txt
index 5cb8322cf..8df29e688 100644
--- a/doc/user-guide.txt
+++ b/doc/user-guide.txt
@@ -13,6 +13,9 @@ For running LTP network tests see `testcases/network/README.md`.
 | 'LTPROOT'             | Prefix for installed LTP, the default is '/opt/ltp'.
 | 'LTP_COLORIZE_OUTPUT' | Force colorized output behaviour. 'y' or '1': always colorize
                           'n' or '0': never colorize.
+| 'LTP_DEV'             | Path to the block device to be used
+                          (C: '.needs_device = 1', shell: 'TST_NEEDS_DEVICE=1').
+| 'LTP_DEV_FS_TYPE'     | Filesystem used for testing (default: 'ext2').
 | 'LTP_TIMEOUT_MUL'     | Multiply timeout, must be number >= 1 (> 1 is useful for
                           slow machines to avoid unexpected timeout).
                           Variable is also used in shell tests, but ceiled to int.
-- 
2.28.0


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

* [LTP] [PATCH 1/2] doc/user-guide: Shorten the description
  2020-09-29 10:58 [LTP] [PATCH 1/2] doc/user-guide: Shorten the description Petr Vorel
  2020-09-29 10:58 ` [LTP] [PATCH 2/2] doc/user-guide: Document block device variables Petr Vorel
@ 2020-09-29 11:33 ` Li Wang
  2020-09-29 18:07   ` Petr Vorel
  1 sibling, 1 reply; 4+ messages in thread
From: Li Wang @ 2020-09-29 11:33 UTC (permalink / raw)
  To: ltp

On Tue, Sep 29, 2020 at 6:58 PM Petr Vorel <pvorel@suse.cz> wrote:

> Signed-off-by: Petr Vorel <pvorel@suse.cz>
>

For the series:

Reviewed-by: Li Wang <liwang@redhat.com>
-- 
Regards,
Li Wang
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.linux.it/pipermail/ltp/attachments/20200929/c7b506c0/attachment.htm>

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

* [LTP] [PATCH 1/2] doc/user-guide: Shorten the description
  2020-09-29 11:33 ` [LTP] [PATCH 1/2] doc/user-guide: Shorten the description Li Wang
@ 2020-09-29 18:07   ` Petr Vorel
  0 siblings, 0 replies; 4+ messages in thread
From: Petr Vorel @ 2020-09-29 18:07 UTC (permalink / raw)
  To: ltp

Hi Li,

> On Tue, Sep 29, 2020 at 6:58 PM Petr Vorel <pvorel@suse.cz> wrote:

> > Signed-off-by: Petr Vorel <pvorel@suse.cz>


> For the series:

> Reviewed-by: Li Wang <liwang@redhat.com>

thanks for your review, merged.

Kind regards,
Petr

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

end of thread, other threads:[~2020-09-29 18:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-29 10:58 [LTP] [PATCH 1/2] doc/user-guide: Shorten the description Petr Vorel
2020-09-29 10:58 ` [LTP] [PATCH 2/2] doc/user-guide: Document block device variables Petr Vorel
2020-09-29 11:33 ` [LTP] [PATCH 1/2] doc/user-guide: Shorten the description Li Wang
2020-09-29 18:07   ` Petr Vorel

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.