Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI silently swallows errors and tests forget to check return values #9932

Closed
ifsheldon opened this issue Jan 6, 2025 · 0 comments · Fixed by #9940
Closed

CI silently swallows errors and tests forget to check return values #9932

ifsheldon opened this issue Jan 6, 2025 · 0 comments · Fixed by #9940

Comments

@ifsheldon
Copy link
Contributor

ifsheldon commented Jan 6, 2025

Here is a simple example that has blocked my PR #9788 for weeks.

In this PR, I need to use wasm32-wasip2 target, which was not added here

run: rustup target add wasm32-wasip1 wasm32-unknown-unknown

which is used by CI.

My PR added L69 to compile an example with wasm32-wasip2 target like below:

image

This create_rust_wasm(wasi wasm32-wasip2) should have failed CI but not, because it didn't checked the return code of the command that was run.

The command should have returned something like

cargo build -p example-wasi-wasm --target wasm32-wasip2
   Compiling example-wasi-wasm v0.0.0 (/Users/zhiqiu/offline_code/opensource/wasmtime/examples/wasm)
error[E0463]: can't find crate for `std`
  |
  = note: the `wasm32-wasip2` target may not be installed
  = help: consider downloading the target with `rustup target add wasm32-wasip2`

For more information about this error, try `rustc --explain E0463`.
error: could not compile `example-wasi-wasm` (bin "wasi") due to 1 previous error

This error was not checked, so a test later failed with misleading error messages, because this step didn't compiled a required manifest file (wasi.wasm).

I don't know if this case is a special case or there are loopholes in CI in which CMake is used but it does not checked a return code of a command that is run.

alexcrichton added a commit to alexcrichton/wasmtime that referenced this issue Jan 7, 2025
* Replace hard tabs in file with `  `
* Move building of example executables to build-time instead of
  configure-time
* Move examples to being built as part of the "all" target
* Use a CMake shorthand for adding tests on executables generated

Closes bytecodealliance#9932
Closes bytecodealliance#9933
alexcrichton added a commit to alexcrichton/wasmtime that referenced this issue Jan 7, 2025
* Replace hard tabs in file with `  `
* Move building of example executables to build-time instead of
  configure-time
* Move examples to being built as part of the "all" target
* Use a CMake shorthand for adding tests on executables generated

Closes bytecodealliance#9932
Closes bytecodealliance#9933
github-merge-queue bot pushed a commit that referenced this issue Jan 7, 2025
* Replace hard tabs in file with `  `
* Move building of example executables to build-time instead of
  configure-time
* Move examples to being built as part of the "all" target
* Use a CMake shorthand for adding tests on executables generated

Closes #9932
Closes #9933
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant