File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 16
16
#define CPROVER_EXIT_SUCCESS 0
17
17
// should contemplate EX_OK from sysexits.h
18
18
19
- /// Verification successful indiciates the analysis has been performed without
19
+ /// Verification successful indicates the analysis has been performed without
20
20
/// error AND the software is safe (w.r.t. the current analysis / config / spec)
21
21
#define CPROVER_EXIT_VERIFICATION_SAFE 0
22
22
23
- /// Verification successful indiciates the analysis has been performed without
23
+ /// Verification successful indicates the analysis has been performed without
24
24
/// error AND the software is not safe (w.r.t. current analysis / config / spec)
25
25
#define CPROVER_EXIT_VERIFICATION_UNSAFE 10
26
26
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
+
27
32
/// A usage error is returned when the command line is invalid or conflicting.
28
33
#define CPROVER_EXIT_USAGE_ERROR 1
29
34
// should contemplate EX_USAGE from sysexits.h
You can’t perform that action at this time.
0 commit comments