summaryrefslogtreecommitdiffstats
path: root/Tests/FindLibLZMA/Test/main.c
blob: 0b3de31362992fa80da643489ae26d77b652be5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <assert.h>
#include <lzma.h>
#include <string.h>

static const uint8_t test_string[9] = "123456789";

int main(void)
{
  static const uint32_t test_vector = 0xCBF43926;

  uint32_t crc = lzma_crc32(test_string, sizeof(test_string), 0);
  assert(crc == test_vector);

  return 0;
}