test/hotspot/gtest/classfile/test_AltHashing.cpp
changeset 47765 b7c7428eaab9
parent 47216 71c04702a3d5
equal deleted inserted replaced
47764:029d5efaaa6c 47765:b7c7428eaab9
    49 static const juint MURMUR3_32_X86_CHECK_VALUE = 0xB0F57EE3;
    49 static const juint MURMUR3_32_X86_CHECK_VALUE = 0xB0F57EE3;
    50 
    50 
    51 class AltHashingTest : public ::testing::Test {
    51 class AltHashingTest : public ::testing::Test {
    52  public:
    52  public:
    53 
    53 
    54   static juint murmur3_32(const int* data, int len) {
    54   static juint murmur3_32(const jint* data, int len) {
    55     return AltHashing::murmur3_32(data, len);
    55     return AltHashing::murmur3_32(data, len);
    56   }
    56   }
    57 };
    57 };
    58 
    58 
    59 TEST_F(AltHashingTest, murmur3_32_byte_array_test) {
    59 TEST_F(AltHashingTest, murmur3_32_byte_array_test) {