reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
   60
   61
   62
   63
   64
   65
   66
   67
   68
   69
   70
   71
   72
   73
   74
   75
   76
   77
   78
   79
   80
   81
   82
import("//llvm/utils/unittest/unittest.gni")

unittest("ADTTests") {
  # ADT is a headers-only library so there's no //llvm/lib/ADT to depend on.
  # Also see note in //llvm/lib/Support/BUILD.gn.
  deps = [
    # Some tests include files from IR, but there's no library dependency.
    "//llvm/include/llvm/IR:public_tablegen",
    "//llvm/lib/Support",
    "//llvm/lib/Testing/Support",
  ]
  sources = [
    "APFloatTest.cpp",
    "APIntTest.cpp",
    "APSIntTest.cpp",
    "AnyTest.cpp",
    "ArrayRefTest.cpp",
    "BitVectorTest.cpp",
    "BitmaskEnumTest.cpp",
    "BreadthFirstIteratorTest.cpp",
    "BumpPtrListTest.cpp",
    "DAGDeltaAlgorithmTest.cpp",
    "DeltaAlgorithmTest.cpp",
    "DenseMapTest.cpp",
    "DenseSetTest.cpp",
    "DepthFirstIteratorTest.cpp",
    "DirectedGraphTest.cpp",
    "EquivalenceClassesTest.cpp",
    "FallibleIteratorTest.cpp",
    "FoldingSet.cpp",
    "FunctionExtrasTest.cpp",
    "FunctionRefTest.cpp",
    "HashingTest.cpp",
    "IListBaseTest.cpp",
    "IListIteratorTest.cpp",
    "IListNodeBaseTest.cpp",
    "IListNodeTest.cpp",
    "IListSentinelTest.cpp",
    "IListTest.cpp",
    "ImmutableListTest.cpp",
    "ImmutableMapTest.cpp",
    "ImmutableSetTest.cpp",
    "IntEqClassesTest.cpp",
    "IntervalMapTest.cpp",
    "IntrusiveRefCntPtrTest.cpp",
    "IteratorTest.cpp",
    "MakeUniqueTest.cpp",
    "MapVectorTest.cpp",
    "MappedIteratorTest.cpp",
    "OptionalTest.cpp",
    "PackedVectorTest.cpp",
    "PointerEmbeddedIntTest.cpp",
    "PointerIntPairTest.cpp",
    "PointerSumTypeTest.cpp",
    "PointerUnionTest.cpp",
    "PostOrderIteratorTest.cpp",
    "PriorityWorklistTest.cpp",
    "RangeAdapterTest.cpp",
    "SCCIteratorTest.cpp",
    "STLExtrasTest.cpp",
    "ScopeExitTest.cpp",
    "SequenceTest.cpp",
    "SetVectorTest.cpp",
    "SimpleIListTest.cpp",
    "SmallPtrSetTest.cpp",
    "SmallSetTest.cpp",
    "SmallStringTest.cpp",
    "SmallVectorTest.cpp",
    "SparseBitVectorTest.cpp",
    "SparseMultiSetTest.cpp",
    "SparseSetTest.cpp",
    "StatisticTest.cpp",
    "StringExtrasTest.cpp",
    "StringMapTest.cpp",
    "StringRefTest.cpp",
    "StringSetTest.cpp",
    "StringSwitchTest.cpp",
    "TinyPtrVectorTest.cpp",
    "TripleTest.cpp",
    "TwineTest.cpp",
  ]
}