diff options
author | Anastasia Klimchuk <aklm@flashrom.org> | 2023-10-27 19:09:37 +1100 |
---|---|---|
committer | Alexander Goncharov <chat@joursoir.net> | 2023-11-02 06:56:29 +0000 |
commit | 86110b4077aea9e78a94e4b4da3f07e318d5b545 (patch) | |
tree | be841a0d168e665d2fd2fc1ba04f5f5db86a632c /doc | |
parent | 1dd7c88f41e49a076a189154928030d37ca00d26 (diff) | |
download | flashrom-86110b4077aea9e78a94e4b4da3f07e318d5b545.tar.gz flashrom-86110b4077aea9e78a94e4b4da3f07e318d5b545.tar.bz2 flashrom-86110b4077aea9e78a94e4b4da3f07e318d5b545.zip |
doc: Add meson test command to TLDR for meson instructions
Running tests is one of the regular things to do in dev process,
same as compile, so it should be highlighted in the TLDR section
of the document.
The patch adds test command to TLDR version in README file, and
in dedicated meson instructions doc.
Change-Id: I67d5f4decdac15e6a72f4372135dab7d44396594
Signed-off-by: Anastasia Klimchuk <aklm@flashrom.org>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/78689
Reviewed-by: Jes Klinke <jbk@chromium.org>
Reviewed-by: Alexander Goncharov <chat@joursoir.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Peter Marheine <pmarheine@chromium.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/dev_guide/building_from_source.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/dev_guide/building_from_source.rst b/doc/dev_guide/building_from_source.rst index 64250dd09..4e507536c 100644 --- a/doc/dev_guide/building_from_source.rst +++ b/doc/dev_guide/building_from_source.rst @@ -33,6 +33,7 @@ TL;DR meson setup builddir meson compile -C builddir + meson test -C builddir meson install -C builddir |