about summary refs log tree commit diff
path: root/tests/run-make/suspicious-library
diff options
context:
space:
mode:
authorJoshua Nelson <github@jyn.dev>2023-03-30 07:34:55 -0500
committerJoshua Nelson <github@jyn.dev>2023-03-30 07:34:55 -0500
commit433da1fc047bb39a263eefca4bdb2b1972f1d2ce (patch)
tree28540e78fdd5fdf158267e67495121ac64f0866a /tests/run-make/suspicious-library
parentf2d9a3d0771504f1ae776226a5799dcb4408a91a (diff)
Move almost all run-make-fulldeps to run-make
They pass fine.
Diffstat (limited to 'tests/run-make/suspicious-library')
-rw-r--r--tests/run-make/suspicious-library/Makefile7
-rw-r--r--tests/run-make/suspicious-library/bar.rs3
-rw-r--r--tests/run-make/suspicious-library/foo.rs3
3 files changed, 13 insertions, 0 deletions
diff --git a/tests/run-make/suspicious-library/Makefile b/tests/run-make/suspicious-library/Makefile
new file mode 100644
index 00000000000..2af9e85c228
--- /dev/null
+++ b/tests/run-make/suspicious-library/Makefile
@@ -0,0 +1,7 @@
+include ../tools.mk
+
+all:
+	$(RUSTC) foo.rs -C prefer-dynamic
+	touch $(call DYLIB,foo-something-special)
+	touch $(call DYLIB,foo-something-special2)
+	$(RUSTC) bar.rs
diff --git a/tests/run-make/suspicious-library/bar.rs b/tests/run-make/suspicious-library/bar.rs
new file mode 100644
index 00000000000..550c94cd0c6
--- /dev/null
+++ b/tests/run-make/suspicious-library/bar.rs
@@ -0,0 +1,3 @@
+extern crate foo;
+
+fn main() { foo::foo() }
diff --git a/tests/run-make/suspicious-library/foo.rs b/tests/run-make/suspicious-library/foo.rs
new file mode 100644
index 00000000000..a382d8f2c7f
--- /dev/null
+++ b/tests/run-make/suspicious-library/foo.rs
@@ -0,0 +1,3 @@
+#![crate_type = "dylib"]
+
+pub fn foo() {}