1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 04:32:44 +01:00

Use ASSERT_EQ rather than ASSERT_TRUE for better unit test failures.

Also minor using namespace move so it's not hard-up against the function
definition and outside the namespace as is usual.

llvm-svn: 192744
This commit is contained in:
David Blaikie 2013-10-15 23:00:17 +00:00
parent c0e8ad39d4
commit 9006a00f8f

View File

@ -14,15 +14,15 @@
#include "llvm/Support/Format.h"
#include "gtest/gtest.h"
namespace {
using namespace llvm;
namespace {
TEST(DIEHashData1Test, DIEHash) {
DIEHash Hash;
DIE Die(dwarf::DW_TAG_base_type);
DIEInteger Size(4);
Die.addValue(dwarf::DW_AT_byte_size, dwarf::DW_FORM_data1, &Size);
uint64_t MD5Res = Hash.computeTypeSignature(&Die);
ASSERT_TRUE(MD5Res == 0x540e9ff30ade3e4aULL);
ASSERT_EQ(MD5Res, 0x540e9ff30ade3e4aULL);
}
}