Test buffer store statement.
()
| 759 | |
| 760 | |
| 761 | def test_buffer_store(): |
| 762 | """Test buffer store statement.""" |
| 763 | buffer_store = create_test_statements()["buffer_store"] |
| 764 | basic_check( |
| 765 | buffer_store, |
| 766 | "\n".join(["BufferStore", "\tAdd", "\t\tVar", "\t\tIntImm", "\tIntImm"]), |
| 767 | "\n".join(["Var", "IntImm", "Add", "IntImm", "BufferStore"]), |
| 768 | ) |
| 769 | |
| 770 | |
| 771 | def test_seq_stmt(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…