xref: /llvm-project/llvm/unittests/Support/xxhashTest.cpp (revision 2946cd701067404b99c39fb29dc9c74bd7193eb3)
1 //===- llvm/unittest/Support/xxhashTest.cpp -------------------------------===//
2 //
3 // 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
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include "llvm/Support/xxhash.h"
10 #include "gtest/gtest.h"
11 
12 using namespace llvm;
13 
14 TEST(xxhashTest, Basic) {
15   EXPECT_EQ(0x33bf00a859c4ba3fU, xxHash64("foo"));
16   EXPECT_EQ(0x48a37c90ad27a659U, xxHash64("bar"));
17   EXPECT_EQ(0x69196c1b3af0bff9U,
18             xxHash64("0123456789abcdefghijklmnopqrstuvwxyz"));
19 }
20