From 7251e1aac69c9ced797987f3d71816880e9a78b8 Mon Sep 17 00:00:00 2001 From: Jorn Tuyls Date: Thu, 29 Aug 2024 16:37:24 +0200 Subject: [PATCH] [CI] Add tools/testing/e2e to search dirs --- build_tools/ci/run_matmul_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_tools/ci/run_matmul_test.sh b/build_tools/ci/run_matmul_test.sh index dfa76d44c..ad7bead47 100755 --- a/build_tools/ci/run_matmul_test.sh +++ b/build_tools/ci/run_matmul_test.sh @@ -64,7 +64,7 @@ fi # Search for iree-compile and iree-e2e-matmul-test in the user provided directory. IREE_COMPILE_EXE="" TEST_RUNNER="" -for dir in "${IREE_INSTALL_DIR}" "${IREE_INSTALL_DIR}/bin" "${IREE_INSTALL_DIR}/tools"; do +for dir in "${IREE_INSTALL_DIR}" "${IREE_INSTALL_DIR}/bin" "${IREE_INSTALL_DIR}/tools" "${IREE_INSTALL_DIR}/tools/testing/e2e"; do echo "Looking in $dir" if [ -f "${dir}/iree-compile" ]; then IREE_COMPILE_EXE="${dir}/iree-compile"