From 7e6f891df850ce4f3c469b53da7e633f616e2ac1 Mon Sep 17 00:00:00 2001 From: Kristof Beyls Date: Tue, 9 Jun 2020 13:18:37 +0100 Subject: [PATCH] Fix race condition in llvm/test/MC/AArch64/mov-expr* tests ... that were introduced in https://reviews.llvm.org/rG0e1accd0f726eef2c47be9f37dd0a06cb50d207e --- llvm/test/MC/AArch64/mov-expr-as-immediate.s | 3 ++- llvm/test/MC/AArch64/mov-expression-as-immediate.s | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/llvm/test/MC/AArch64/mov-expr-as-immediate.s b/llvm/test/MC/AArch64/mov-expr-as-immediate.s index bc3adc2..533fba3 100644 --- a/llvm/test/MC/AArch64/mov-expr-as-immediate.s +++ b/llvm/test/MC/AArch64/mov-expr-as-immediate.s @@ -1,4 +1,5 @@ -// RUN: llvm-mc -triple aarch64-none-linux-gnu %s -filetype=obj -o %t | llvm-objdump --triple aarch64-none-linux-gnu -Dr %t | FileCheck %s +// RUN: llvm-mc -triple aarch64-none-linux-gnu %s -filetype=obj -o %t +// RUN: llvm-objdump --triple aarch64-none-linux-gnu -Dr %t | FileCheck %s 0: .skip 4 diff --git a/llvm/test/MC/AArch64/mov-expression-as-immediate.s b/llvm/test/MC/AArch64/mov-expression-as-immediate.s index 9426293..b5a4ff9 100644 --- a/llvm/test/MC/AArch64/mov-expression-as-immediate.s +++ b/llvm/test/MC/AArch64/mov-expression-as-immediate.s @@ -1,4 +1,5 @@ -// RUN: llvm-mc -triple aarch64-none-linux-gnu %s -filetype=obj -o %t | llvm-objdump -d %t | FileCheck %s +// RUN: llvm-mc -triple aarch64-none-linux-gnu %s -filetype=obj -o %t +// RUN: llvm-objdump -d %t | FileCheck %s 0: .skip 4 -- 2.7.4