Skip to content

Commit

Permalink
[CI] Add tools/testing/e2e to search dirs (#722)
Browse files Browse the repository at this point in the history
Not sure what influences this, but locally the `iree-e2e-matmul-test`
executable is found under `"${IREE_INSTALL_DIR}/tools/testing/e2e`.
  • Loading branch information
jtuyls authored Aug 29, 2024
1 parent bfbd397 commit 0a8a140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_tools/ci/run_matmul_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 0a8a140

Please sign in to comment.