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 285d384 commit c7319dfCopy full SHA for c7319df
tests/integration_tests/build/test_binary_static_linking.py
@@ -8,15 +8,15 @@
8
import host_tools.cargo_build as host
9
from framework import utils
10
11
+
12
@pytest.mark.timeout(500)
13
def test_firecracker_binary_static_linking():
14
"""
15
Test to make sure the firecracker binary is statically linked.
16
17
fc_binary_path = host.get_binary("firecracker")
- _, stdout,stderr = utils.run_cmd(f"file {fc_binary_path}")
18
+ _, stdout, stderr = utils.run_cmd(f"file {fc_binary_path}")
19
assert "" in stderr
20
# expected "statically linked" for aarch64 and
21
# "static-pie linked" for x86_64
- assert "statically linked" in stdout or \
22
- "static-pie linked" in stdout
+ assert "statically linked" in stdout or "static-pie linked" in stdout
0 commit comments