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(
636
636
]
637
637
assert len (rpath_tags ) == 1
638
638
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 :
641
643
policy = anylinux .policy
642
644
643
645
test_path = "/auditwheel_src/tests/integration/testrpath"
644
646
645
- pass
646
-
647
647
def test_multiple_top_level (
648
648
self , anylinux : AnyLinuxContainer , python : PythonContainer
649
649
) -> 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):
11
11
def run (self ) -> None :
12
12
cmd = "gcc -fPIC -shared -o c/libc.so c/c.c"
13
13
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"
15
15
subprocess .check_call (cmd .split ())
16
16
cmd = (
17
17
"gcc -fPIC -shared -o a/liba.so a/a.c "
You can’t perform that action at this time.
0 commit comments