Go to file
Kurt Degiorgio 0b90c17a8c JBMC: Moved format_classpath.sh to scripts/format_classpath.sh
'format_classpath.sh' is used in regression tests that make use of the
'classpath' option. This script is needed to deal with the fact that
classpath syntex is OS-dependent.

The java concurrency regression tests make heavy use of this option as
such this commit moves 'format_classpath.sh' to
'scripts/format_classpath.sh'.

Furthermore, this commit makes a very small change to 'appveyor.yml'
that enables existing java concurrency regression tests to run on
Windows.
2018-06-24 15:35:02 +01:00
.githooks Make the pre-commit hook report non-temporary path names (#477) 2017-02-02 20:39:09 +00:00
cmake Add DownloadProject cmake script 2017-09-27 11:22:20 +01:00
doc use __CPROVER_size_t and __CPROVER_ssize_t for __CPROVER_POINTER_OBJECT/OFFSET 2018-05-25 07:24:28 +01:00
jbmc JBMC: Moved format_classpath.sh to scripts/format_classpath.sh 2018-06-24 15:35:02 +01:00
pkg/arch Add CBMC package build file for Arch Linux 2017-04-26 16:29:00 +01:00
regression Merge pull request #2376 from diffblue/gcc_attributes5_KNOWNBUG 2018-06-21 12:56:00 +01:00
scripts JBMC: Moved format_classpath.sh to scripts/format_classpath.sh 2018-06-24 15:35:02 +01:00
src Merge pull request #2446 from tautschnig/vs-unlink 2018-06-24 12:43:16 +01:00
unit Remove dummy implementations from propt 2018-06-24 01:30:07 +01:00
.clang-format Sort includes using clang-format 2018-04-23 17:51:43 +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 CBMC_VERSION: Use generated include files instead of command-line defines 2018-06-23 20:41:45 +00:00
.travis.yml Travis: test more g++ and clang versions 2018-06-20 11:39:06 +01:00
CHANGELOG Add new goto-instrument option print-global-state-size 2018-06-20 09:38:30 +01:00
CMakeLists.txt CBMC_VERSION: Use generated include files instead of command-line defines 2018-06-23 20:41:45 +00:00
CODEOWNERS Update CODEOWNERS for /jbmc 2018-05-21 17:27:36 +01:00
CODING_STANDARD.md fix compilation instructions 2018-06-23 19:38:04 +01:00
COMPILING.md fix compilation instructions 2018-06-23 19:38:04 +01:00
LICENSE update year 2016-09-05 17:05:55 +01:00
README.md Add online documentation to README 2018-03-23 13:06:58 +00:00
appveyor.yml JBMC: Moved format_classpath.sh to scripts/format_classpath.sh 2018-06-24 15:35:02 +01:00
buildspec-windows.yml mark gcc tests as 'gcc-only' to prevent execution by goto-cl on Windows 2018-06-12 22:08:36 +01:00
buildspec.yml build jbmc on AWS codebuild 2018-06-23 19:44:26 +01:00
gcloud-travis-cbmc.json.enc Add encrypted GCloud key for Travis 2018-03-20 12:16:01 +00:00

README.md

Build Status Build Status Build Status

CProver Wiki

CProver Documentation

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.