From mboxrd@z Thu Jan 1 00:00:00 1970 From: Heinrich Schuchardt Date: Thu, 4 Mar 2021 16:32:52 +0100 Subject: [PATCH v4 02/42] doc: Tidy up testing section In-Reply-To: <20210304135118.643277-3-sjg@chromium.org> References: <20210304135118.643277-1-sjg@chromium.org> <20210304135118.643277-3-sjg@chromium.org> Message-ID: <30899b1b-9389-d1e7-3d62-5324317672e8@gmx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 3/4/21 2:50 PM, Simon Glass wrote: > Tweak this so the output looks a little better. > > Signed-off-by: Simon Glass Reviewed-by: Heinrich Schuchardt > --- > > (no changes since v2) > > Changes in v2: > - Use correct rst format for 'Ad-hoc tests' section > > doc/develop/testing.rst | 20 ++++++++++++-------- > 1 file changed, 12 insertions(+), 8 deletions(-) > > diff --git a/doc/develop/testing.rst b/doc/develop/testing.rst > index 4bc9ca3a6ae..bc74eb53e35 100644 > --- a/doc/develop/testing.rst > +++ b/doc/develop/testing.rst > @@ -8,14 +8,14 @@ tested and what tests you should write when adding a new feature. > Running tests > ------------- > > -To run most tests on sandbox, type this: > +To run most tests on sandbox, type this:: > > make check > > in the U-Boot directory. Note that only the pytest suite is run using this > command. > > -Some tests take ages to run. To run just the quick ones, type this: > +Some tests take ages to run. To run just the quick ones, type this:: > > make qcheck > > @@ -35,9 +35,9 @@ either on sandbox or on real hardware. It relies on the U-Boot console to > inject test commands and check the result. It is slower to run than C code, > but provides the ability to unify lots of tests and summarise their results. > > -You can run the tests on sandbox with: > +You can run the tests on sandbox with:: > > - ./test/py/test.py --bd sandbox --build > + ./test/py/test.py --bd sandbox --build > > This will produce HTML output in build-sandbox/test-log.html > > @@ -58,10 +58,14 @@ Ad-hoc tests > > There are several ad-hoc tests which run outside the pytest environment: > > - test/fs - File system test (shell script) > - test/image - FIT and legacy image tests (shell script and Python) > - test/stdint - A test that stdint.h can be used in U-Boot (shell script) > - trace - Test for the tracing feature (shell script) > +test/fs > + File system test (shell script) > +test/image > + FIT and legacy image tests (shell script and Python) > +test/stdint > + A test that stdint.h can be used in U-Boot (shell script) > +trace > + Test for the tracing feature (shell script) > > TODO: Move these into pytest. > >