diff options
author | David Blaikie <dblaikie@gmail.com> | 2013-10-15 23:00:17 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2013-10-15 23:00:17 +0000 |
commit | 5980419379315158ddca45c302dd7574c8fa0f32 (patch) | |
tree | 6764f7bc0f8d7350234af1c85b5d048ca0babf9b /llvm/unittests/CodeGen/DIEHashTest.cpp | |
parent | 5d6c2c318b2237017cb84d8df72f220f49fe5749 (diff) | |
download | bcm5719-llvm-5980419379315158ddca45c302dd7574c8fa0f32.tar.gz bcm5719-llvm-5980419379315158ddca45c302dd7574c8fa0f32.zip |
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
Diffstat (limited to 'llvm/unittests/CodeGen/DIEHashTest.cpp')
-rw-r--r-- | llvm/unittests/CodeGen/DIEHashTest.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/unittests/CodeGen/DIEHashTest.cpp b/llvm/unittests/CodeGen/DIEHashTest.cpp index d2831e8536e..6b9a4dbc26a 100644 --- a/llvm/unittests/CodeGen/DIEHashTest.cpp +++ b/llvm/unittests/CodeGen/DIEHashTest.cpp @@ -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); } } |