Go to file
Vlastimil Zeman 177a13d198 Add Coverity scan
Coverity scan will run as separate job in second stage. Ii will terminate
itself as soon as possible if build is not triggered by cron. Therefore
it requires to have cron job setup in settings of diffblue/cbmc and
environment variable `COVERITY_SCAN_TOKEN` in the same project settings.
2017-09-15 08:54:35 +01:00
.githooks Make the pre-commit hook report non-temporary path names (#477) 2017-02-02 20:39:09 +00:00
doc [docs 5/5] Convert CBMC Guide to Markdown 2017-07-10 12:48:38 +01:00
pkg/arch Add CBMC package build file for Arch Linux 2017-04-26 16:29:00 +01:00
regression remove path-symex and the symex tool 2017-09-14 17:03:25 +01:00
scripts Set up glucose externalproject 2017-09-11 14:29:12 +01:00
src remove path-symex and the symex tool 2017-09-14 17:03:25 +01:00
unit Merge pull request #1293 from reuk/cmake-develop 2017-09-13 15:17:52 +01:00
.dir-locals.el Move Emacs style file so it affects unit tests as well as main source 2017-08-16 12:43:32 +01:00
.editorconfig Don't remove trailing spaces from patch files 2016-11-29 17:26:59 +00:00
.gitattributes added test.desc as text 2016-08-15 12:35:10 +01:00
.gitignore Updated doxyfile to a modern version 2017-06-30 19:39:42 +01:00
.travis.yml Add Coverity scan 2017-09-15 08:54:35 +01:00
CHANGELOG dump-c: output a generated environment via --harness 2017-09-01 14:22:50 +01:00
CMakeLists.txt Fix up CMake build (unrelated) 2017-09-13 22:03:57 +01:00
CODING_STANDARD.md Update coding standard 2017-08-04 14:53:24 +01:00
COMPILING Add CMake howto to COMPILING file 2017-09-11 14:29:12 +01:00
LICENSE update year 2016-09-05 17:05:55 +01:00
README.md Add Coverity scan 2017-09-15 08:54:35 +01:00
appveyor.yml remove path-symex and the symex tool 2017-09-14 17:03:25 +01:00

README.md

Build Status Build Status Build Status

CProver Wiki

About

CBMC is a Bounded Model Checker for C and C++ programs. It supports C89, C99, most of C11 and most compiler extensions provided by gcc and Visual Studio. It also supports SystemC using Scoot. It allows verifying array bounds (buffer overflows), pointer safety, exceptions and user-specified assertions. Furthermore, it can check C and C++ for consistency with other languages, such as Verilog. The verification is performed by unwinding the loops in the program and passing the resulting equation to a decision procedure.

For full information see cprover.org.

Versions

Get the latest release

  • Releases are tested and for production use.

Get the current develop version: git clone https://github.com/diffblue/cbmc.git

  • Develop versions are not recommended for production use.

Report bugs

If you encounter a problem please file a bug report:

Contributing to the code base

  1. Fork the repository
  2. Clone the repository git clone git@github.com:YOURNAME/cbmc.git
  3. Create a branch from the develop branch (default branch)
  4. Make your changes (follow the coding guidelines)
  5. Push your changes to your branch
  6. Create a Pull Request targeting the develop branch

License

4-clause BSD license, see LICENSE file.