From 445ea1e77751246c0b53d78e531500c3d281c1d0 Mon Sep 17 00:00:00 2001 From: Mircea Trofin Date: Fri, 3 Feb 2023 19:55:12 -0800 Subject: [PATCH] [mlgo] only enable interactive mode tests on linux `os.mkfifo` may not be supported everywhere (e.g. windows). --- llvm/test/CodeGen/MLRegalloc/interactive-mode.ll | 1 + llvm/test/Transforms/Inline/ML/interactive-mode.ll | 1 + 2 files changed, 2 insertions(+) diff --git a/llvm/test/CodeGen/MLRegalloc/interactive-mode.ll b/llvm/test/CodeGen/MLRegalloc/interactive-mode.ll index 141c24d..51af589 100644 --- a/llvm/test/CodeGen/MLRegalloc/interactive-mode.ll +++ b/llvm/test/CodeGen/MLRegalloc/interactive-mode.ll @@ -1,3 +1,4 @@ +; REQUIRES: x86_64-linux ; RUN: rm -rf %t.rundir ; RUN: rm -rf %t.channel-basename.* ; RUN: mkdir %t.rundir diff --git a/llvm/test/Transforms/Inline/ML/interactive-mode.ll b/llvm/test/Transforms/Inline/ML/interactive-mode.ll index 55bde78..07f9835 100644 --- a/llvm/test/Transforms/Inline/ML/interactive-mode.ll +++ b/llvm/test/Transforms/Inline/ML/interactive-mode.ll @@ -1,3 +1,4 @@ +; REQUIRES: x86_64-linux ; RUN: rm -rf %t.rundir ; RUN: rm -rf %t.channel-basename.* ; RUN: mkdir %t.rundir -- 2.7.4