We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6994f96 commit 7d27a85Copy full SHA for 7d27a85
test/runners.jl
@@ -173,10 +173,8 @@ end
173
export CCACHE=pwned
174
export USE_CCACHE=false
175
echo '$(test_c)' > test.c
176
- # Build object file
177
- $(compiler) -Werror -c test.c -o test.o
178
# Build shared library
179
- $(compiler) -Werror -shared test.c -o libtest.\${dlext}
+ $(compiler) -shared test.c -o libtest.\${dlext}
180
181
# Print out the notes in the library
182
readelf -n libtest.\${dlext}
@@ -185,7 +183,7 @@ end
185
183
@test run(ur, cmd, iobuff)
186
184
seekstart(iobuff)
187
# Make sure the compiled library has the note section for the build-id
188
- @test occursin(".note.gnu.build-id", readchomp(iobuff))
+ @test occursin("NT_GNU_BUILD_ID", readchomp(iobuff))
189
end
190
191
0 commit comments