We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 154d809 commit b825691Copy full SHA for b825691
1 file changed
.github/workflows/nightly_rustc.yml
@@ -109,12 +109,19 @@ jobs:
109
run: |
110
cd rustc_codegen_gcc/tests/hello-world
111
cargo +my-toolchain build
112
+ echo "*** 1"
113
cargo +my-toolchain run > hello_world_stdout
114
115
+ echo "*** 2"
116
+ echo hello_world_stdout
117
+
118
expected_output="40"
119
test $(cat hello_world_stdout) == $expected_output || (echo "Output differs. Actual output: $(cat hello_world_stdout)"; exit 1)
120
121
+ echo "*** 3"
122
123
objcopy --dump-section .comment=comment target/debug/hello_world
124
grep --text "^.rustc version .* with libgccjit" comment
125
grep --text 'libgccjit' comment
126
grep --text 'GCC: ' comment
127
+ echo "*** 4"
0 commit comments