Fix test_doctest.py failures for VxWorks by avoiding exact error message checks. (better for everyone all around)
... '-m', 'doctest', 'nosuchfile')
>>> rc, out
(1, b'')
+ >>> # The exact error message changes depending on the platform.
>>> print(normalize(err)) # doctest: +ELLIPSIS
Traceback (most recent call last):
...
- FileNotFoundError: [Errno ...] No such file or directory: 'nosuchfile'
+ FileNotFoundError: [Errno ...] ...nosuchfile...
Invalid doctest option:
--- /dev/null
+Fix test_doctest.py failures for VxWorks.