README: Add Testing section

add `make test` to README.md

On windows platform, building with MinGW can run 'make check' (autoconf)
and 'ctest' or 'make test' (cmake), while building with MSBuild can only
run 'ctest -c Release|Debug'.

Signed-off-by: Ralph Giles <giles@thaumas.net>
diff --git a/README.md b/README.md
index 63545e2..ce6502d 100644
--- a/README.md
+++ b/README.md
@@ -122,6 +122,35 @@
     cmake ..
     make
 
+## Testing ##
+
+This package includes a collection of automated tests.
+Running them is not part of building nor installation but optional. 
+
+### Unix-like System or MinGW ###
+
+If build under automake:
+
+    make check
+
+If build under CMake:
+
+    make test
+
+or:
+
+    ctest
+
+### Windows with MSBuild ###
+
+If build with configuration type "Debug", then:
+
+    ctest -C Debug
+
+If build with configuration type "Release", then:
+
+    ctest -C Release
+
 ## License ##
 
 THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE.