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
Some tests expects the echo command to support -n option. This is usually the case, but not always. Actually, the -n option for echo is not portable. Because of this some tests fails with errors like:
FAIL: test_no_interfere1 (tests.test.ExecutionContextTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "$(BUILD_DIR)/tests/test.py", line 3447, in test_no_interfere1
self.assertEqual("TEST", out.getvalue())
AssertionError: 'TEST' != '-n TEST\n'
- TEST
+ -n TEST
Here is an example how various echo implementations works on OpenIndiana (and, AFAIK, on Solaris too):
Some tests expects the
echo
command to support-n
option. This is usually the case, but not always. Actually, the-n
option forecho
is not portable. Because of this some tests fails with errors like:Here is an example how various echo implementations works on OpenIndiana (and, AFAIK, on Solaris too):
Yes, we do have three standalone
echo
implementations :-).Documentation:
The text was updated successfully, but these errors were encountered: