Skip to content

Commit 3640d93

Browse files
committed
test: output-type-permutations: Clean up .dll.a as well
1 parent 096a2a2 commit 3640d93

File tree

1 file changed

+2
-2
lines changed
  • src/test/run-make-fulldeps/output-type-permutations

1 file changed

+2
-2
lines changed

src/test/run-make-fulldeps/output-type-permutations/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ all:
55
$(call REMOVE_RLIBS,bar)
66
$(call REMOVE_DYLIBS,bar)
77
rm $(call STATICLIB,bar)
8-
rm -f $(TMPDIR)/bar.{dll.exp,dll.lib,pdb}
8+
rm -f $(TMPDIR)/bar.{dll.exp,dll.lib,pdb,dll.a}
99
# Check that $(TMPDIR) is empty.
1010
[ "$$(ls -1 $(TMPDIR) | wc -l)" -eq "0" ]
1111

@@ -78,7 +78,7 @@ all:
7878
rm $(TMPDIR)/$(call BIN,foo)
7979
$(RUSTC) foo.rs --crate-type=dylib --emit=link=$(TMPDIR)/$(call BIN,foo)
8080
rm $(TMPDIR)/$(call BIN,foo)
81-
rm -f $(TMPDIR)/foo.{dll.exp,dll.lib,pdb}
81+
rm -f $(TMPDIR)/foo.{dll.exp,dll.lib,pdb,dll.a}
8282
[ "$$(ls -1 $(TMPDIR) | wc -l)" -eq "0" ]
8383

8484
$(RUSTC) foo.rs --crate-type=staticlib -o $(TMPDIR)/foo

0 commit comments

Comments
 (0)