From 5053c7cf5a183f154ea12214cfe0c29bbb321df4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Strehovsk=C3=BD?= Date: Wed, 17 May 2023 10:20:42 +0900 Subject: [PATCH] Exclude profiler/r2r tests from building (#86314) These are excluded in issues.targets, but we shouldn't even build them. --- src/tests/issues.targets | 6 ------ src/tests/profiler/Directory.Build.props | 7 +++++++ src/tests/readytorun/Directory.Build.props | 7 +++++++ 3 files changed, 14 insertions(+), 6 deletions(-) create mode 100644 src/tests/profiler/Directory.Build.props create mode 100644 src/tests/readytorun/Directory.Build.props diff --git a/src/tests/issues.targets b/src/tests/issues.targets index eccfda9..a164dc3 100644 --- a/src/tests/issues.targets +++ b/src/tests/issues.targets @@ -1048,12 +1048,6 @@ https://github.com/dotnet/runtimelab/issues/165 - - CoreCLR test - - - CoreCLR test - https://github.com/dotnet/runtimelab/issues/201 diff --git a/src/tests/profiler/Directory.Build.props b/src/tests/profiler/Directory.Build.props new file mode 100644 index 0000000..338eecc --- /dev/null +++ b/src/tests/profiler/Directory.Build.props @@ -0,0 +1,7 @@ + + + + + true + + diff --git a/src/tests/readytorun/Directory.Build.props b/src/tests/readytorun/Directory.Build.props new file mode 100644 index 0000000..338eecc --- /dev/null +++ b/src/tests/readytorun/Directory.Build.props @@ -0,0 +1,7 @@ + + + + + true + + -- 2.7.4