File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,8 @@ def main():
47
47
48
48
if desired_version > current_version :
49
49
version_string = '.' .join ([str (num ) for num in current_version ])
50
- print (f'WARNING: CBMC version is { version_string } ' )
50
+ desired_version_string = '.' .join ([str (num ) for num in desired_version ])
51
+ print (f'WARNING: CBMC version is { version_string } , expected at least { desired_version_string } ' )
51
52
sys .exit (EXIT_CODE_MISMATCH )
52
53
53
54
if __name__ == "__main__" :
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export PATH=$SCRIPT_DIR:$PATH
15
15
EXTRA_X_PY_BUILD_ARGS=" ${EXTRA_X_PY_BUILD_ARGS:- } "
16
16
17
17
# Required dependencies
18
- check-cbmc-version.py --major 5 --minor 18
18
+ check-cbmc-version.py --major 5 --minor 30
19
19
20
20
# Formatting check
21
21
./x.py fmt --check
You can’t perform that action at this time.
0 commit comments