File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -636,14 +636,14 @@ def test_rpath(
636636 ]
637637 assert len (rpath_tags ) == 1
638638 assert rpath_tags [0 ].rpath == "$ORIGIN"
639-
640- def test_dependency_order (self , anylinux : AnyLinuxContainer , python : PythonContainer ) -> None :
639+
640+ def test_dependency_order (
641+ self , anylinux : AnyLinuxContainer , python : PythonContainer
642+ ) -> None :
641643 policy = anylinux .policy
642644
643645 test_path = "/auditwheel_src/tests/integration/testrpath"
644646
645- pass
646-
647647 def test_multiple_top_level (
648648 self , anylinux : AnyLinuxContainer , python : PythonContainer
649649 ) -> None :
Original file line number Diff line number Diff line change 1- int fb (void );
1+ int fc (void );
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ class BuildExt(build_ext):
1111 def run (self ) -> None :
1212 cmd = "gcc -fPIC -shared -o c/libc.so c/c.c"
1313 subprocess .check_call (cmd .split ())
14- cmd = "gcc -fPIC -shared -o b/libb.so b/b.c -Wl,-rpath=$ORIGIN/../c - Ic -Lc -lc"
14+ cmd = "gcc -fPIC -shared -o b/libb.so b/b.c -Ic -Lc -lc"
1515 subprocess .check_call (cmd .split ())
1616 cmd = (
1717 "gcc -fPIC -shared -o a/liba.so a/a.c "
You can’t perform that action at this time.
0 commit comments