From e3c2d964f5d53ef3e8f44c0683adcefcb1cf86c6 Mon Sep 17 00:00:00 2001 From: Lukas Korencik Date: Thu, 1 Feb 2024 11:54:39 +0100 Subject: [PATCH] test: Enable some single source abi related tests. --- test/vast/Compile/SingleSource/putchar-a.c | 3 +-- test/vast/Compile/SingleSource/puts-a.c | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/test/vast/Compile/SingleSource/putchar-a.c b/test/vast/Compile/SingleSource/putchar-a.c index ee3757be33..19ed055a76 100644 --- a/test/vast/Compile/SingleSource/putchar-a.c +++ b/test/vast/Compile/SingleSource/putchar-a.c @@ -1,5 +1,4 @@ -// RUN: %vast-front -o %t %s && %t | %file-check %s -// REQUIRES: abi +// RUN: %vast-front -vast-pipeline=with-abi -o %t %s && %t | %file-check %s int putchar(int); diff --git a/test/vast/Compile/SingleSource/puts-a.c b/test/vast/Compile/SingleSource/puts-a.c index dab02571b5..79fa2aa2ed 100644 --- a/test/vast/Compile/SingleSource/puts-a.c +++ b/test/vast/Compile/SingleSource/puts-a.c @@ -1,5 +1,4 @@ -// RUN: %vast-front -o %t %s && %t hello | %file-check %s -// REQUIRES: abi +// RUN: %vast-front -vast-pipeline=with-abi -o %t %s && %t hello | %file-check %s int puts(const char *);