Skip to content

Commit cc7f84b

Browse files
committed
run all 'thread' tests on FreeBSD, and also on 32bit
1 parent 90d326c commit cc7f84b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ci/ci.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,9 @@ case $HOST_TARGET in
164164
# Partially supported targets (tier 2)
165165
BASIC="empty_main integer heap_alloc libc-mem vec string btreemap" # ensures we have the basics: pre-main code, system allocator
166166
UNIX="hello panic/panic panic/unwind concurrency/simple atomic libc-mem libc-misc libc-random env num_cpus" # the things that are very similar across all Unixes, and hence easily supported there
167-
TEST_TARGET=x86_64-unknown-freebsd run_tests_minimal $BASIC $UNIX time hashmap random threadname pthread fs libc-pipe concurrency sync
168-
TEST_TARGET=i686-unknown-freebsd run_tests_minimal $BASIC $UNIX time hashmap random threadname pthread fs libc-pipe
169-
TEST_TARGET=aarch64-linux-android run_tests_minimal $BASIC $UNIX time hashmap random sync concurrency thread epoll eventfd
167+
TEST_TARGET=x86_64-unknown-freebsd run_tests_minimal $BASIC $UNIX time hashmap random thread sync concurrency fs libc-pipe
168+
TEST_TARGET=i686-unknown-freebsd run_tests_minimal $BASIC $UNIX time hashmap random thread sync concurrency fs libc-pipe
169+
TEST_TARGET=aarch64-linux-android run_tests_minimal $BASIC $UNIX time hashmap random thread sync concurrency epoll eventfd
170170
TEST_TARGET=wasm32-wasip2 run_tests_minimal $BASIC wasm
171171
TEST_TARGET=wasm32-unknown-unknown run_tests_minimal no_std empty_main wasm # this target doesn't really have std
172172
TEST_TARGET=thumbv7em-none-eabihf run_tests_minimal no_std

src/shims/windows/foreign_items.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ fn win_get_full_path_name<'tcx>(path: &Path) -> InterpResult<'tcx, io::Result<Pa
6565
}
6666
// Otherwise we try to do something kind of close to what Windows does, but this is probably not
6767
// right in all cases.
68-
let mut result: Vec<&[u8]> = vec![]; // will be a vecot of components, joined by `/`.
68+
let mut result: Vec<&[u8]> = vec![]; // will be a vector of components, joined by `/`.
6969
let mut bytes = bytes; // the remaining bytes to process
7070
let mut stop = false;
7171
while !stop {

0 commit comments

Comments
 (0)