From: Ilya Biryukov Date: Mon, 3 Dec 2018 11:26:35 +0000 (+0000) Subject: [clang] Do not read from 'test/SemaCXX/Inputs' inside 'test/AST' X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5e3d7e0e1db7212c20718d5bcaf866a471a5c851;p=clang [clang] Do not read from 'test/SemaCXX/Inputs' inside 'test/AST' Our integrate relies on test inputs being taken from the same diretory as the test itself. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@348123 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/AST/Inputs/std-coroutine.h b/test/AST/Inputs/std-coroutine.h new file mode 100644 index 0000000000..7a424f1e99 --- /dev/null +++ b/test/AST/Inputs/std-coroutine.h @@ -0,0 +1,37 @@ +// RUN: %clang_cc1 -triple x86_64-apple-darwin9 %s -std=c++14 -fcoroutines-ts -fsyntax-only -Wignored-qualifiers -Wno-error=return-type -verify -fblocks -Wno-unreachable-code -Wno-unused-value +#ifndef STD_COROUTINE_H +#define STD_COROUTINE_H + +namespace std { +namespace experimental { + +template +struct coroutine_traits { using promise_type = typename Ret::promise_type; }; + +template +struct coroutine_handle { + static coroutine_handle from_address(void *); +}; +template <> +struct coroutine_handle { + template + coroutine_handle(coroutine_handle); + static coroutine_handle from_address(void *); +}; + +struct suspend_always { + bool await_ready() { return false; } + void await_suspend(coroutine_handle<>) {} + void await_resume() {} +}; + +struct suspend_never { + bool await_ready() { return true; } + void await_suspend(coroutine_handle<>) {} + void await_resume() {} +}; + +} // namespace experimental +} // namespace std + +#endif // STD_COROUTINE_H diff --git a/test/AST/coroutine-source-location-crash.cpp b/test/AST/coroutine-source-location-crash.cpp index ddccb61306..04fb1d45c5 100644 --- a/test/AST/coroutine-source-location-crash.cpp +++ b/test/AST/coroutine-source-location-crash.cpp @@ -1,6 +1,6 @@ // RUN: %clang_cc1 -triple x86_64-apple-darwin9 %s -std=c++14 -fcoroutines-ts \ // RUN: -fsyntax-only -ast-dump | FileCheck %s -#include "../SemaCXX/Inputs/std-coroutine.h" +#include "Inputs/std-coroutine.h" using namespace std::experimental;