File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -477,7 +477,7 @@ def test_io(scorep_env, instrumenter):
477477 "IO_OPERATION_COMPLETE" : file_regex ,
478478 "LEAVE" : "write" ,
479479 },
480- "close " : {
480+ "read " : {
481481 "ENTER" : "read" ,
482482 "IO_OPERATION_BEGIN" : file_regex ,
483483 "IO_OPERATION_COMPLETE" : file_regex ,
@@ -499,9 +499,9 @@ def test_io(scorep_env, instrumenter):
499499 after_expected_io = False
500500
501501 for line in std_out .split ("\n " ):
502- if ("user_instrumenter:expect io" in line ) and (in_expected_io == False ):
502+ if ("user_instrumenter:expect io" in line ) and (in_expected_io is False ):
503503 in_expected_io = True
504- elif ("user_instrumenter:expect io" in line ) and (in_expected_io == True ):
504+ elif ("user_instrumenter:expect io" in line ) and (in_expected_io is True ):
505505 in_expected_io = False
506506 after_expected_io = True
507507 if in_expected_io :
You can’t perform that action at this time.
0 commit comments