File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,8 @@ def main():
4747
4848 if desired_version > current_version :
4949 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 } ' )
5152 sys .exit (EXIT_CODE_MISMATCH )
5253
5354if __name__ == "__main__" :
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export PATH=$SCRIPT_DIR:$PATH
1515EXTRA_X_PY_BUILD_ARGS=" ${EXTRA_X_PY_BUILD_ARGS:- } "
1616
1717# Required dependencies
18- check-cbmc-version.py --major 5 --minor 18
18+ check-cbmc-version.py --major 5 --minor 30
1919
2020# Formatting check
2121./x.py fmt --check
You can’t perform that action at this time.
0 commit comments