diff options
author | Joseph Huber <huberjn@outlook.com> | 2024-07-22 08:43:17 -0500 |
---|---|---|
committer | Joseph Huber <huberjn@outlook.com> | 2024-07-22 08:44:02 -0500 |
commit | bc4c3bf1b75fec183e2616d6688aa155d6aada74 (patch) | |
tree | fd276987bad44dd87562bc39c4b39536698bb308 | |
parent | aa99192bc65071c0a008faefedd90874fbe053dd (diff) | |
download | llvm-bc4c3bf1b75fec183e2616d6688aa155d6aada74.zip llvm-bc4c3bf1b75fec183e2616d6688aa155d6aada74.tar.gz llvm-bc4c3bf1b75fec183e2616d6688aa155d6aada74.tar.bz2 |
[libc] Remove special case handing around test case that was fixed
Summary:
I needed to hack something around this for a previous backend bug, it's
since been fixed as far as I'm aware.
-rw-r--r-- | libc/test/src/__support/blockstore_test.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/libc/test/src/__support/blockstore_test.cpp b/libc/test/src/__support/blockstore_test.cpp index dd74ea1..de7bd72 100644 --- a/libc/test/src/__support/blockstore_test.cpp +++ b/libc/test/src/__support/blockstore_test.cpp @@ -183,11 +183,10 @@ TEST_F(LlvmLibcBlockStoreTest, PopulateAndIterateReverse10) { populate_and_iterate<4, 10, true>(); } -TEST_F(LlvmLibcBlockStoreTest, Back) { back_test<false>(); } - -// FIXME: Combing this test with the above test makes the AMDGPU backend -// generate code which hangs. This should be fixed in the clang compiler. -TEST_F(LlvmLibcBlockStoreTest, BackReverse) { back_test<true>(); } +TEST_F(LlvmLibcBlockStoreTest, Back) { + back_test<false>(); + back_test<true>(); +} TEST_F(LlvmLibcBlockStoreTest, Empty) { empty_test<false>(); |