Skip to content

Commit 9552f35

Browse files
richmckeevercopybara-github
authored andcommitted
Enable more tests in proc_lowering_block_eval_test.
These have apparently been fixed by other changes at head. PiperOrigin-RevId: 857288119
1 parent 1bf879b commit 9552f35

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

xls/codegen_v_1_5/proc_lowering_block_eval_test.cc

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2246,7 +2246,7 @@ TEST_F(ProcLoweringBlockEvalTest, SequentialNestedProcsWithLoops) {
22462246
IsOkAndHolds(BlockOutputsEq({{"out", {246, 44, 84}}})));
22472247
}
22482248

2249-
TEST_F(ProcLoweringBlockEvalTest, DISABLED_DoubleNestedLoops) {
2249+
TEST_F(ProcLoweringBlockEvalTest, DoubleNestedLoops) {
22502250
// Nested procs where the nested procs loop. The innermost proc loops 4 times,
22512251
// the middle proc loops 2 times.
22522252
auto p = CreatePackage();
@@ -2843,7 +2843,7 @@ TEST_F(ProcLoweringBlockEvalTest,
28432843
}
28442844

28452845
TEST_F(ProcLoweringBlockEvalTest,
2846-
DISABLED_DelayedReceiveWithNoDataLossFifoDepth1Variant1) {
2846+
DelayedReceiveWithNoDataLossFifoDepth1Variant1) {
28472847
auto p = CreatePackage();
28482848
Type* u32 = p->GetBitsType(32);
28492849
XLS_ASSERT_OK_AND_ASSIGN(
@@ -2906,8 +2906,7 @@ TEST_F(ProcLoweringBlockEvalTest,
29062906
IsOkAndHolds(BlockOutputsEq({{"out", {42, 43, 44}}})));
29072907
}
29082908

2909-
TEST_F(ProcLoweringBlockEvalTest,
2910-
DISABLED_DelayedReceiveWithDataLossFifoDepth1) {
2909+
TEST_F(ProcLoweringBlockEvalTest, DelayedReceiveWithDataLossFifoDepth1) {
29112910
auto p = CreatePackage();
29122911
Type* u32 = p->GetBitsType(32);
29132912
XLS_ASSERT_OK_AND_ASSIGN(
@@ -2971,7 +2970,7 @@ TEST_F(ProcLoweringBlockEvalTest,
29712970
IsOkAndHolds(BlockOutputsEq({{"out", {42, 42, 43}}})));
29722971
}
29732972

2974-
TEST_F(ProcLoweringBlockEvalTest, DISABLED_DataLoss) {
2973+
TEST_F(ProcLoweringBlockEvalTest, DataLoss) {
29752974
auto p = CreatePackage();
29762975
Type* u32 = p->GetBitsType(32);
29772976
XLS_ASSERT_OK_AND_ASSIGN(
@@ -3194,7 +3193,7 @@ TEST_F(ProcLoweringBlockEvalTest, DISABLED_TwoSendsOneReceive) {
31943193
IsOkAndHolds(BlockOutputsEq({{"result_out", {4, 14, 28}}})));
31953194
}
31963195

3197-
TEST_F(ProcLoweringBlockEvalTest, DISABLED_TwoReceivesOneSend) {
3196+
TEST_F(ProcLoweringBlockEvalTest, TwoReceivesOneSend) {
31983197
auto p = CreatePackage();
31993198
Type* u32 = p->GetBitsType(32);
32003199
XLS_ASSERT_OK_AND_ASSIGN(

0 commit comments

Comments
 (0)