about summary refs log tree commit diff
path: root/tests/run-make/libs-through-symlinks
AgeCommit message (Collapse)AuthorLines
2025-02-07tests: add a missing `needs-symlink`许杰友 Jieyou Xu (Joe)-0/+1
2024-12-28tests: migrate `libs-through-symlink` to rmake.rs许杰友 Jieyou Xu (Joe)-22/+48
- Document test intent, backlink to #13890 and fix PR #13903. - Fix the test logic: the `Makefile` version seems to not actually be exercising the "library search traverses symlink" logic, because the actual symlinked-to-library is present under the directory tree when `bar.rs` is compiled, because the `$(RUSTC)` invocation has an implicit `-L $(TMPDIR)`. The symlink itself was actually broken, i.e. it should've been `ln -nsf $(TMPDIR)/outdir/$(NAME) $(TMPDIR)` but it used `ln -nsf outdir/$(NAME) $(TMPDIR)`. Co-authored-by: Oneirical <manchot@videotron.ca>
2024-12-06Use option "-sf" for the AIX "ln" command.Xing Xue-1/+11
2023-03-30ignore failing cross-compiled run-make testsJoshua Nelson-0/+1
`run-make-fulldeps` is never cross-compiled, so a lot of these tests never accounted for --target. Ignore them when cross-compiling for now.
2023-03-30Move almost all run-make-fulldeps to run-makeJoshua Nelson-0/+16
They pass fine.