Skip to content

Commit 1c62067

Browse files
committed
Rollup merge of #48491 - glaubitz:s390x-linux, r=sanxiyn
test: Fix s390x-unknown-linux-gnu atomic-lock-free test not run for systemz The s390-unknown-linux-gnu atomic-lock-free test is currently run for ```LLVM_COMPONENTS == powerpc```. I assume it was meant to be run for ```LLVM_COMPONENTS == systemz```, so let's fix this.
2 parents 266386a + e3781c6 commit 1c62067

File tree

1 file changed

+2
-0
lines changed
  • src/test/run-make/atomic-lock-free

1 file changed

+2
-0
lines changed

src/test/run-make/atomic-lock-free/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ ifeq ($(filter powerpc,$(LLVM_COMPONENTS)),powerpc)
3636
nm "$(TMPDIR)/libatomic_lock_free.rlib" | $(CGREP) -v __atomic_fetch_add
3737
$(RUSTC) --target=powerpc64le-unknown-linux-gnu atomic_lock_free.rs
3838
nm "$(TMPDIR)/libatomic_lock_free.rlib" | $(CGREP) -v __atomic_fetch_add
39+
endif
40+
ifeq ($(filter systemz,$(LLVM_COMPONENTS)),systemz)
3941
$(RUSTC) --target=s390x-unknown-linux-gnu atomic_lock_free.rs
4042
nm "$(TMPDIR)/libatomic_lock_free.rlib" | $(CGREP) -v __atomic_fetch_add
4143
endif

0 commit comments

Comments
 (0)