File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,8 @@ jobs:
113
113
CG_RUSTFLAGS="-Clinker=m68k-unknown-linux-gnu-gcc" ../../y.sh cargo build --target m68k-unknown-linux-gnu
114
114
sudo cp target/m68k-unknown-linux-gnu/debug/hello_world $vm_dir/home/
115
115
sudo chroot $vm_dir qemu-m68k-static /home/hello_world > hello_world_stdout
116
- test $(cat hello_world_stdout) == "Hello, world!" || (echo "Output differs. Actual output: $(cat hello_world_stdout)"; exit 1)
116
+ expected_output="40"
117
+ test $(cat hello_world_stdout) == $expected_output || (echo "Output differs. Actual output: $(cat hello_world_stdout)"; exit 1)
117
118
118
119
# Summary job for the merge queue.
119
120
# ALL THE PREVIOUS JOBS NEED TO BE ADDED TO THE `needs` SECTION OF THIS JOB!
You can’t perform that action at this time.
0 commit comments