You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am looking into updating the testcases for Windows support.
While doing so, I am looking at the sendeof function and in Windows EOF is not supported so is this function supposed to have the same function as "exit" or should the test_eof testcase just be skipped for Windows?
For now I have done this for windows-only
child.sendeof()
assert child.read(2) == "^D"
I actually expected this to work but it doesn't:
child.sendeof()
child.expect(wexpect.EOF)
The text was updated successfully, but these errors were encountered:
Stefanhg
added a commit
to Stefanhg/wexpect
that referenced
this issue
Sep 30, 2023
Hello,
I am looking into updating the testcases for Windows support.
While doing so, I am looking at the sendeof function and in Windows EOF is not supported so is this function supposed to have the same function as "exit" or should the test_eof testcase just be skipped for Windows?
For now I have done this for windows-only
I actually expected this to work but it doesn't:
The text was updated successfully, but these errors were encountered: