readme: add another method for running unit tests

Now that we have subprojects for all the OpenBMC based dependencies, the
tests should build and run natively using any reasonably modern Linux
distro with the correct build dependencies installed.  Add this as a
third mode for running the tests.  Add wording that indicates this is
the "preferred" mode since this is how everyone expects to run unit
tests in the first place.

Change-Id: I75e2841b224dc0e61cd3d877a8ef571167181dad
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/README.md b/README.md
index 8f09ed6..4054da6 100644
--- a/README.md
+++ b/README.md
@@ -4,8 +4,13 @@
 meson build && ninja -C build
 ```
 ## To run unit tests
-Tests can be run in the CI docker container, or with an OpenBMC x86 sdk(see
-below for x86 steps).
+The simplest way of running the tests is as described by the meson man page:
+```
+meson builddir && meson test -C builddir
+```
+
+Alternatively, tests can be run in the OpenBMC CI docker container, or with an
+OpenBMC x86 sdk(see below for x86 steps).
 ```
 meson -Doe-sdk=enabled build
 ninja -C build test