From 86110b4077aea9e78a94e4b4da3f07e318d5b545 Mon Sep 17 00:00:00 2001 From: Anastasia Klimchuk Date: Fri, 27 Oct 2023 19:09:37 +1100 Subject: [PATCH] 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 Reviewed-on: https://review.coreboot.org/c/flashrom/+/78689 Reviewed-by: Jes Klinke Reviewed-by: Alexander Goncharov Tested-by: build bot (Jenkins) Reviewed-by: Peter Marheine --- README.rst | 1 + doc/dev_guide/building_from_source.rst | 1 + 2 files changed, 2 insertions(+) diff --git a/README.rst b/README.rst index 0a0ea08f7..371fd6175 100644 --- a/README.rst +++ b/README.rst @@ -32,6 +32,7 @@ TLDR, building with meson meson setup builddir meson compile -C builddir + meson test -C builddir meson install -C builddir For full detailed instructions, follow the information in 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