FAIL: src/test/test_ntor.sh2571===========================25722573Traceback (most recent call last):2574 File "C:/projects/tor/i686-w64-mingw32/../src/test/ntor_ref.py", line 402, in <module>2575 test_tor()2576 File "C:/projects/tor/i686-w64-mingw32/../src/test/ntor_ref.py", line 368, in test_tor2577 c2s_msg, c_state = tor_client1(node_id, pubkey_B)2578 File "C:/projects/tor/i686-w64-mingw32/../src/test/ntor_ref.py", line 347, in tor_client12579 stdout=subprocess.PIPE)2580 File "C:\msys64\mingw32\lib\python3.6\subprocess.py", line 709, in __init__2581 restore_signals, start_new_session)2582 File "C:\msys64\mingw32\lib\python3.6\subprocess.py", line 971, in _execute_child2583 args = list2cmdline(args)2584 File "C:\msys64\mingw32\lib\python3.6\subprocess.py", line 461, in list2cmdline2585 needquote = (" " in arg) or ("\t" in arg) or not arg2586TypeError: a bytes-like object is required, not 'str'2587OK2588FAIL src/test/test_ntor.sh (exit status: 1)25892590FAIL: src/test/test_hs_ntor.sh2591==============================25922593DONE: python dance [b'Cc\x0e"k\'*\xc4\x8a\x18\xc2\xfcN\xac\x8e(\xaa\x14\xb1\xccqqCN"\x9f\x9b\xd5W@\x94O']2594Traceback (most recent call last):2595 File "C:/projects/tor/i686-w64-mingw32/../src/test/hs_ntor_ref.py", line 424, in <module>2596 do_little_t_tor_ntor_test()2597 File "C:/projects/tor/i686-w64-mingw32/../src/test/hs_ntor_ref.py", line 310, in do_little_t_tor_ntor_test2598 client_ephemeral_enc_privkey, subcredential)2599 File "C:/projects/tor/i686-w64-mingw32/../src/test/hs_ntor_ref.py", line 248, in tor_client12600 stdout=subprocess.PIPE)2601 File "C:\msys64\mingw32\lib\python3.6\subprocess.py", line 709, in __init__2602 restore_signals, start_new_session)2603 File "C:\msys64\mingw32\lib\python3.6\subprocess.py", line 971, in _execute_child2604 args = list2cmdline(args)2605 File "C:\msys64\mingw32\lib\python3.6\subprocess.py", line 461, in list2cmdline2606 needquote = (" " in arg) or ("\t" in arg) or not arg2607TypeError: a bytes-like object is required, not 'str'2608FAIL src/test/test_hs_ntor.sh (exit status: 1)26092610
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items ...
Show closed items
Linked items 0
Link issues together to show that they're related.
Learn more.
I'm surprised that this isn't affecting other platforms, though. Why would this be windows-only?
Maybe python2, not python3, is installed as python on most non-Windows platforms by default? (or at least the ones we run CI on?)
So ahf confirms that Python 3 on Windows does not accept the bytes() type on subprocess.Popen. (Python 3.6.5.) And I can confirm that on Linux it does.