[Mlir-commits] [mlir] 8d73ab8 - [mlir] [integration_test] Make integration tests default OFF
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Mon Jun 15 14:33:27 PDT 2020
Author: aartbik
Date: 2020-06-15T14:33:18-07:00
New Revision: 8d73ab8ddc52d300b685bff74cb1d46edc8416b3
URL: https://github.com/llvm/llvm-project/commit/8d73ab8ddc52d300b685bff74cb1d46edc8416b3
DIFF: https://github.com/llvm/llvm-project/commit/8d73ab8ddc52d300b685bff74cb1d46edc8416b3.diff
LOG: [mlir] [integration_test] Make integration tests default OFF
Summary:
Previous submit of new tests accidentally made this ON.
The tests should be opt-in.
To build with MLIR integration tests enabled, pass the following
cmake .... \
-DMLIR_INCLUDE_INTEGRATION_TESTS=ON \
....
Reviewers: mehdi_amini
Subscribers: mgorny, mehdi_amini, rriddle, jpienaar, shauheen, antiagainst, nicolasvasilache, arpith-jacob, mgester, lucyrfox, liufengdb, stephenneuendorffer, Joonsoo, grosul1, frgossen, Kayjukh, jurahul, msifontes
Tags: #mlir
Differential Revision: https://reviews.llvm.org/D81878
Added:
Modified:
mlir/CMakeLists.txt
Removed:
################################################################################
diff --git a/mlir/CMakeLists.txt b/mlir/CMakeLists.txt
index df219d5dd603..3a53a9bccd3e 100644
--- a/mlir/CMakeLists.txt
+++ b/mlir/CMakeLists.txt
@@ -49,8 +49,7 @@ option(MLIR_INCLUDE_TESTS
${LLVM_INCLUDE_TESTS})
option(MLIR_INCLUDE_INTEGRATION_TESTS
- "Generate build targets for the MLIR integration tests."
- ${LLVM_INCLUDE_TESTS})
+ "Generate build targets for the MLIR integration tests.")
include_directories( "include")
include_directories( ${MLIR_INCLUDE_DIR})
More information about the Mlir-commits
mailing list