-
Notifications
You must be signed in to change notification settings - Fork 22
fix unit tests #115
Comments
updated |
some unit test currently don't compile. See #115
Thanks, being able to run the test suite is great! Looks like quite a bit could be gained by implementing |
@tbu- It breaks the powerpc (iirc?) target but works everywhere else. Wasn't sure if it was ok to drop support for one target ... |
or to be more specific, the startup (before main) stuff of the powepc target is already flaky. #72 requires doing more startup stuff which finishes breaking the powerpc target :-) |
In what context is the execution of the unit tests? It seems that |
|
Mh. It didn't print when I inserted a |
@tbu- I have sent you an invite to become a collaborator of this repo 🎉. Could you check off the tests that have been fixed in the issue description? |
Thank you. Did that. |
src/collections/hash/map.rs
- doesn't compilethread_local!
. cc implement thread_local! #30src/fs.rs
- doesn't compilesys_common::io::test::TempDir
. cc implement TempDir (sys_common::io::test::TempDir) #116src/io/buffered.rs
- doesn't compilethread
. cc implement std::thread #13src/net/addr.rs
- doesn't compilestd::net::test
, which depends onstd::env
. cc implement env (vars, current_dir) [only missing: home_dir] #69src/net/ip.rs
- doesn't compilestd::net::test
, which depends onstd::env
. cc implement env (vars, current_dir) [only missing: home_dir] #69src/net/tcp.rs
- doesn't compilestd::net::test
, which depends onstd::env
. cc implement env (vars, current_dir) [only missing: home_dir] #69src/net/udp.rs
- doesn't compilestd::net::test
, which depends onstd::env
. cc implement env (vars, current_dir) [only missing: home_dir] #69std::thread
. cc implement std::thread #13std::sync::mpsc::channel
. cc implementsync::mpsc::channel
#117src/os/raw.rs
- doesn't compilelib
:c_schar
,c_short
, etc.src/process.rs
- doesn't compileCommand
API. cc implement std::command #11libc
.getuid
,getgid
, etc.src/rand/mod.rs
- doesn't compilestd::thread
. cc implement std::thread #13std::sync::mpsc::channel
. cc implementsync::mpsc::channel
#117src/sys/linux/ext/net.rs
- doesn't compilestd::thread
. cc implement std::thread #13sys_common::io::test::TempDir
. cc implement TempDir (sys_common::io::test::TempDir) #116src/sys/linux/process.rs
- doesn't compilelibc
.sigset_t
,SIGINT
, etc.Command
API. cc implement std::command #11src/sys_common/io.rs
- doesn't compilestd::env
. cc implement env (vars, current_dir) [only missing: home_dir] #69src/sys_common/net.rs
- doesn't compilelookup_host
. cc implement net::lookup_host #101The text was updated successfully, but these errors were encountered: