Skip to content

Remove 3 corrupt bzip2 files (sample{1,2,3}.rb2) in Utilities/cmbzip2.

mreiden requested to merge mreiden/cmake:master into master

A similar issue was corrected in 2012 by removing corrupt bz2 files (sample{1,2,3}.bz2) in this directory with commit 79189985.

The test target in https://gitlab.kitware.com/cmake/cmake/blob/master/Utilities/cmbzip2/makefile.msc still references the bz2 files and generates the rb2 and tst files as part of the test. The sample{1,2,3}.rb2 and sample{1,2,3}.tst files should be removed from the source tree since they are generated by the test and new (non-corrupt) bz2 files should be added from the following commands copied from the test target:

  • bzip2 -1 < sample1.ref > sample1.bz2
  • bzip2 -2 < sample2.ref > sample2.bz2
  • bzip2 -3 < sample3.ref > sample3.bz2
Edited by mreiden

Merge request reports