From 230adb86e945fbf5be5a362ee14c7534ebe19567 Mon Sep 17 00:00:00 2001 From: Alp Toker Date: Mon, 5 May 2014 06:22:21 +0000 Subject: [PATCH] Add speculative clang-interpreter test Let's see how far this gets on the build servers. The application requires native JIT and uses the C standard library, but hopefully we can get this tested on at least some configurations. Taking a lead from the clang-format tests, we'll just expect the executable to get picked up from the build output path for now. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@207950 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Misc/interpreter.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/Misc/interpreter.c diff --git a/test/Misc/interpreter.c b/test/Misc/interpreter.c new file mode 100644 index 0000000000..42e1645b7c --- /dev/null +++ b/test/Misc/interpreter.c @@ -0,0 +1,10 @@ +// RUN: clang-interpreter %s | FileCheck %s +// REQUIRES: native, examples + +int printf(const char *, ...); + +int main() { + // CHECK: {{Hello world!}} + printf("Hello world!\n"); + return 0; +} -- 2.40.0