summaryrefslogtreecommitdiffstats
path: root/contrib/llvm/unittests/ADT/DenseSetTest.cpp
diff options
context:
space:
mode:
authorrdivacky <rdivacky@FreeBSD.org>2010-06-10 19:59:23 +0000
committerrdivacky <rdivacky@FreeBSD.org>2010-06-10 19:59:23 +0000
commitda32c729a8e4c8fdfd1a30d4dcd2955d1366f22c (patch)
tree5df31f11bd529d5065815f704c0fb41bc9ce26a1 /contrib/llvm/unittests/ADT/DenseSetTest.cpp
parent88ae17c7ef1b0e23829cd4e275aeb58b58df7609 (diff)
downloadFreeBSD-src-da32c729a8e4c8fdfd1a30d4dcd2955d1366f22c.zip
FreeBSD-src-da32c729a8e4c8fdfd1a30d4dcd2955d1366f22c.tar.gz
Remove Xcode cmake win32 projects unittests from LLVM and
clang.xcodeproj INPUTS win32 from clang. Requested by: jkim Approved by: ed (mentor)
Diffstat (limited to 'contrib/llvm/unittests/ADT/DenseSetTest.cpp')
-rw-r--r--contrib/llvm/unittests/ADT/DenseSetTest.cpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/contrib/llvm/unittests/ADT/DenseSetTest.cpp b/contrib/llvm/unittests/ADT/DenseSetTest.cpp
deleted file mode 100644
index 7a35f52..0000000
--- a/contrib/llvm/unittests/ADT/DenseSetTest.cpp
+++ /dev/null
@@ -1,30 +0,0 @@
-//===- llvm/unittest/ADT/DenseSetTest.cpp - DenseSet unit tests --*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#include "gtest/gtest.h"
-#include <llvm/ADT/DenseSet.h>
-
-using namespace llvm;
-
-namespace {
-
-// Test fixture
-class DenseSetTest : public testing::Test {
-};
-
-// Test hashing with a set of only two entries.
-TEST_F(DenseSetTest, DoubleEntrySetTest) {
- llvm::DenseSet<unsigned> set(2);
- set.insert(0);
- set.insert(1);
- // Original failure was an infinite loop in this call:
- EXPECT_EQ(0, set.count(2));
-}
-
-}
OpenPOWER on IntegriCloud