mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
f595d6dd9a
test for it. The test is by no means complete, but it tests the problem I was fixing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77025 91177308-0d34-0410-b5e6-96231b3b80d8
37 lines
917 B
C++
37 lines
917 B
C++
//===- llvm/unittest/ADT/SparseBitVectorTest.cpp - SparseBitVector tests --===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/ADT/SparseBitVector.h"
|
|
#include "gtest/gtest.h"
|
|
|
|
using namespace llvm;
|
|
|
|
namespace {
|
|
|
|
TEST(SparseBitVectorTest, TrivialOperation) {
|
|
SparseBitVector<> Vec;
|
|
EXPECT_EQ(0U, Vec.count());
|
|
EXPECT_FALSE(Vec.test(17));
|
|
Vec.set(5);
|
|
EXPECT_TRUE(Vec.test(5));
|
|
EXPECT_FALSE(Vec.test(17));
|
|
Vec.reset(6);
|
|
EXPECT_TRUE(Vec.test(5));
|
|
EXPECT_FALSE(Vec.test(6));
|
|
Vec.reset(5);
|
|
EXPECT_FALSE(Vec.test(5));
|
|
EXPECT_TRUE(Vec.test_and_set(17));
|
|
EXPECT_FALSE(Vec.test_and_set(17));
|
|
EXPECT_TRUE(Vec.test(17));
|
|
Vec.clear();
|
|
EXPECT_FALSE(Vec.test(17));
|
|
}
|
|
|
|
}
|