//===- llvm/unittest/ADT/PackedVectorTest.cpp - PackedVector tests --------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // BitVectorTest tests fail on PowerPC for unknown reasons, so disable this // as well since it depends on a BitVector. #ifndef __powerpc__ #include "llvm/ADT/PackedVector.h" #include "gtest/gtest.h" usingnamespacellvm; namespace { TEST(PackedVectorTest, Operation) { … } #ifdef EXPECT_DEBUG_DEATH TEST(PackedVectorTest, UnsignedValues) { … } TEST(PackedVectorTest, SignedValues) { … } #endif } #endif