Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions utils/node_local_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2829,7 +2829,14 @@ def test_il_cat(self):
with open(fname, 'w'):
pass

self.dfuse.il_cmd(['cat', fname], check_write=False)
self.dfuse.il_cmd([
'dd',
f'if={fname}',
'of=/dev/null',
'bs=4096',
'iflag=fullblock',
'status=none'
], check_write=False, check_fstat=False)

@needs_dfuse_with_opt(caching_variants=[False])
def test_il(self):
Expand Down Expand Up @@ -5049,7 +5056,7 @@ def create_and_read_via_il(dfuse, path):
dfuse.il_cmd([
'dd',
f'if={fname}',
'of=/tmp/dd_sink',
'of=/dev/null',
'bs=4096',
'iflag=fullblock',
'status=none'
Expand Down
Loading