[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / unittests / Support / xxhashTest.cpp
blob7dc7c40c69ecec064307e941162df8dfe469386f
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 //===----------------------------------------------------------------------===//
9 #include "llvm/Support/xxhash.h"
10 #include "gtest/gtest.h"
12 using namespace llvm;
14 TEST(xxhashTest, Basic) {
15 EXPECT_EQ(0x33bf00a859c4ba3fU, xxHash64("foo"));
16 EXPECT_EQ(0x48a37c90ad27a659U, xxHash64("bar"));
17 EXPECT_EQ(0x69196c1b3af0bff9U,
18 xxHash64("0123456789abcdefghijklmnopqrstuvwxyz"));