Home
last modified time | relevance | path

Searched refs:SourceInts (Results 1 – 1 of 1) sorted by relevance

/llvm-project/llvm/unittests/Support/
H A DBinaryStreamTest.cpp787 std::vector<int> SourceInts = {1, 2, 3, 4, 5}; in TEST_F() local
788 ArrayRef<uint8_t> SourceBytes(reinterpret_cast<uint8_t *>(&SourceInts[0]), in TEST_F()
789 SourceInts.size() * sizeof(int)); in TEST_F()
800 ASSERT_THAT_ERROR(Reader.readArray(Ints, SourceInts.size()), Succeeded()); in TEST_F()
804 ASSERT_THAT_ERROR(ReaderBacker.readArray(Ints2, SourceInts.size()), in TEST_F()
807 EXPECT_EQ(ArrayRef(SourceInts), Ints2); in TEST_F()