about summary refs log tree commit diff
path: root/tests/run-make/glibc-symbols-x86_64-unknown-linux-gnu
diff options
context:
space:
mode:
authorJakub Beránek <berykubik@gmail.com>2025-01-21 12:36:59 +0100
committerJakub Beránek <berykubik@gmail.com>2025-01-22 12:47:44 +0100
commit7877883339e96577701344bd68a80470e1be22aa (patch)
tree08c77a950ae9f64605c1a761ff01a48c581b22d5 /tests/run-make/glibc-symbols-x86_64-unknown-linux-gnu
parent75f8cc6ab651558a37d78b45deddf6ee8f526c80 (diff)
downloadrust-7877883339e96577701344bd68a80470e1be22aa.tar.gz
rust-7877883339e96577701344bd68a80470e1be22aa.zip
Run the glibc run-make test in opt-dist
Diffstat (limited to 'tests/run-make/glibc-symbols-x86_64-unknown-linux-gnu')
-rw-r--r--tests/run-make/glibc-symbols-x86_64-unknown-linux-gnu/rmake.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-make/glibc-symbols-x86_64-unknown-linux-gnu/rmake.rs b/tests/run-make/glibc-symbols-x86_64-unknown-linux-gnu/rmake.rs
index ec693ca793c..76acf93c055 100644
--- a/tests/run-make/glibc-symbols-x86_64-unknown-linux-gnu/rmake.rs
+++ b/tests/run-make/glibc-symbols-x86_64-unknown-linux-gnu/rmake.rs
@@ -81,7 +81,7 @@ fn get_glibc_symbols(file: &Path) -> Vec<GlibcSymbol> {
 
     // Uses llvm-objdump, because implementing this using the `object` crate is quite complicated.
     llvm_objdump()
-        .arg("-T")
+        .arg("--dynamic-syms")
         .arg(file)
         .run()
         .stdout_utf8()