Skip to content

Commit 01abfb2

Browse files
Merge pull request #3558 from peterschrammel/verification-inconclusive
Reserve exit code for VERIFICATION INCONCLUSIVE
2 parents 23deda5 + d2159b7 commit 01abfb2

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/util/exit_codes.h

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,19 @@ Author: Martin Brain, [email protected]
1616
#define CPROVER_EXIT_SUCCESS 0
1717
// should contemplate EX_OK from sysexits.h
1818

19-
/// Verification successful indiciates the analysis has been performed without
19+
/// Verification successful indicates the analysis has been performed without
2020
/// error AND the software is safe (w.r.t. the current analysis / config / spec)
2121
#define CPROVER_EXIT_VERIFICATION_SAFE 0
2222

23-
/// Verification successful indiciates the analysis has been performed without
23+
/// Verification successful indicates the analysis has been performed without
2424
/// error AND the software is not safe (w.r.t. current analysis / config / spec)
2525
#define CPROVER_EXIT_VERIFICATION_UNSAFE 10
2626

27+
/// Verification inconclusive indicates the analysis has been performed without
28+
/// error AND the software is neither safe nor unsafe
29+
/// (w.r.t. current analysis / config / spec)
30+
#define CPROVER_EXIT_VERIFICATION_INCONCLUSIVE 5
31+
2732
/// A usage error is returned when the command line is invalid or conflicting.
2833
#define CPROVER_EXIT_USAGE_ERROR 1
2934
// should contemplate EX_USAGE from sysexits.h

0 commit comments

Comments
 (0)