[Openmp-commits] [PATCH] D123177: [libomptarget] Add device RTL to regression test dependencies.

Michael Kruse via Phabricator via Openmp-commits openmp-commits at lists.llvm.org
Wed Apr 6 18:06:22 PDT 2022


Meinersbur added a comment.

In D123177#3433461 <https://reviews.llvm.org/D123177#3433461>, @kkwli0 wrote:

> Not sure if it is related. If I do a clean `make check-openmp`, I see many failures due to missing `FileCheck` etc.
>
>   ...
>   $ "build-llvm/./bin/FileCheck" "/llvm-project/openmp/runtime/test/ompt/parallel/nested_threadnum.c"
>   # command stderr:
>   'build-llvm/./bin/FileCheck': command not found
>   error: command failed with exit status: 127

I cannot reproduce, FileCheck is a correct dependency:

  add_lit_testsuite(${target}
    ${comment}
    ${ARG_UNPARSED_ARGUMENTS}
    EXCLUDE_FROM_CHECK_ALL
    DEPENDS clang FileCheck not ${ARG_DEPENDS}
    ARGS ${ARG_ARGS}
  )

However, for me in the tests FileCheck is resolved to an absolute path. Do you use a standalone build with incorrect (relative) paths to LLVM's build dir?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D123177/new/

https://reviews.llvm.org/D123177



More information about the Openmp-commits mailing list