From: Mathias Preiner Date: Mon, 27 Apr 2020 20:42:28 +0000 (-0700) Subject: Fix examples instructions in INSTALL.md. (#4397) X-Git-Tag: cvc5-1.0.0~3339 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dc9b11c33d0f3283b82f2c87bfd7dd4c7126b0d0;p=cvc5.git Fix examples instructions in INSTALL.md. (#4397) --- diff --git a/INSTALL.md b/INSTALL.md index 17d31fe1a..9fc2b52c1 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -203,17 +203,7 @@ binding, please contact one of the project leaders. ## Building the Examples -The examples provided in directory `examples` are not built by default. - - make examples # build all examples - make runexamples # build and run all examples - make # build examples//. - ctest example// # run test example// - -All examples binaries are built into `/bin/examples`. - -See `examples/README` for more detailed information on what to find in the -`examples` directory. +See `examples/README.md` for instructions on how to build and run the examples. ## Testing CVC4 @@ -238,24 +228,6 @@ We have 4 categories of tests: - **unit tests** in directory `test/unit` (label: **unit**) -### Testing Examples - -For building instructions, see [Building the Examples](building-the-examples). - -We use prefix `example/` + `/` + `` (for `` in -`example//`) as test target name. - - make bitvectors # build example/api/bitvectors.cpp - ctest -R bitvectors # run all tests that match '*bitvectors*' - # > runs example/api/bitvectors - # > example/api/bitvectors_and_arrays - # > ... - ctest -R bitvectors$ # run all tests that match '*bitvectors' - # > runs example/api/bitvectors - ctest -R example/api/bitvectors$ # run all tests that match '*example/api/bitvectors' - # > runs example/api/bitvectors - - ### Testing System Tests The system tests are not built by default.