Skip to content

Commit 1b086a9

Browse files
jhuber6yuxuanchen1997
authored andcommitted
[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. Test Plan: Reviewers: Subscribers: Tasks: Tags: Differential Revision: https://phabricator.intern.facebook.com/D60251346
1 parent eebaf4b commit 1b086a9

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

libc/test/src/__support/blockstore_test.cpp

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -183,11 +183,10 @@ TEST_F(LlvmLibcBlockStoreTest, PopulateAndIterateReverse10) {
183183
populate_and_iterate<4, 10, true>();
184184
}
185185

186-
TEST_F(LlvmLibcBlockStoreTest, Back) { back_test<false>(); }
187-
188-
// FIXME: Combing this test with the above test makes the AMDGPU backend
189-
// generate code which hangs. This should be fixed in the clang compiler.
190-
TEST_F(LlvmLibcBlockStoreTest, BackReverse) { back_test<true>(); }
186+
TEST_F(LlvmLibcBlockStoreTest, Back) {
187+
back_test<false>();
188+
back_test<true>();
189+
}
191190

192191
TEST_F(LlvmLibcBlockStoreTest, Empty) {
193192
empty_test<false>();

0 commit comments

Comments
 (0)