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
compiletest isn't super robust about distinguishing between configuration and environment for the host versus the target-under-test (for cross-compile scenarios). At places, we sometimes don't bother distinguishing the two for "good enough" cases and when host-only testing is the case where we can make things work.
Furthermore, we do not distinguish between the case where you may actually have two "target" toolchains for the purpose of testing wasm proc macros: there is a under-test target toolchain for wasm proc-macros and there's a under-test target toolchain for $other_things
graph TD
A["host_target(x86_64-unknown-linux-gnu)"] --> B["target_a(wasm32-wasip2)"]
A --> C["target_b(i686-unknown-linux-gnu)"]
compiletest isn't super robust about distinguishing between configuration and environment for the host versus the target-under-test (for cross-compile scenarios). At places, we sometimes don't bother distinguishing the two for "good enough" cases and when host-only testing is the case where we can make things work.
Furthermore, we do not distinguish between the case where you may actually have two "target" toolchains for the purpose of testing wasm proc macros: there is a under-test target toolchain for wasm proc-macros and there's a under-test target toolchain for $other_things
graph TD A["host_target(x86_64-unknown-linux-gnu)"] --> B["target_a(wasm32-wasip2)"] A --> C["target_b(i686-unknown-linux-gnu)"]