test_mmhash.c 321 B

123456789101112131415
  1. #include <assert.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4. #include "mmhash.h"
  5. int main() {
  6. printf("[TEST] hash\n");
  7. char buf[] = "hello, world\n";
  8. uint64_t hash0 = mmhash(buf, strlen(buf), 0);
  9. uint64_t hash1 = mmhash(buf, 3, 0);
  10. assert(hash0 != hash1);
  11. printf("[PASS] hash\n");
  12. return 0;
  13. }