1
0
Fork 0
mirror of https://github.com/imjasonh/krust synced 2026-07-08 14:55:35 +00:00
krust/tests/testdata/clean_output.txt
Jason Hall e47442d04d successfully pushed to GAR
Signed-off-by: Jason Hall <jason@chainguard.dev>
2025-10-15 11:58:05 -04:00

20 lines
477 B
Text

# Test that stdout is clean for command substitution when using --no-push
-- Cargo.toml --
[package]
name = "test-app"
version = "0.1.0"
edition = "2021"
[dependencies]
-- src/main.rs --
fn main() {
println!("Hello, world!");
}
# With --no-push, stdout should be empty
[linux] exec ./krust build --no-push --platform linux/amd64 .
[darwin] exec ./krust build --no-push --platform linux/amd64 .
! stdout .
stderr 'Building Rust project'
stderr 'Successfully built image'