blob: 7dc7c40c69ecec064307e941162df8dfe469386f [file] [log] [blame]
Rafael Espindolaeaeb6d92016-09-27 15:45:57 +00001//===- llvm/unittest/Support/xxhashTest.cpp -------------------------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Rafael Espindolaeaeb6d92016-09-27 15:45:57 +00006//
7//===----------------------------------------------------------------------===//
8
9#include "llvm/Support/xxhash.h"
10#include "gtest/gtest.h"
11
12using namespace llvm;
13
14TEST(xxhashTest, Basic) {
15 EXPECT_EQ(0x33bf00a859c4ba3fU, xxHash64("foo"));
16 EXPECT_EQ(0x48a37c90ad27a659U, xxHash64("bar"));
17 EXPECT_EQ(0x69196c1b3af0bff9U,
18 xxHash64("0123456789abcdefghijklmnopqrstuvwxyz"));
19}