The test added in https://reviews.llvm.org/D138671 exits with exit code 1.
Adding not at the command solves the problem.
Details
- Reviewers
nicolasvasilache springerm
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
mlir/test/Integration/Dialect/Memref/cast-runtime-verification.mlir | ||
---|---|---|
68 | Could we return %c0 here instead? |
mlir/test/Integration/Dialect/Memref/cast-runtime-verification.mlir | ||
---|---|---|
68 | I tried it and it still fails. // RUN: not mlir-cpu-runner --no-implicit-module %s 2>&1 | FileCheck %s // CHECK: Error: top-level op must be a symbol table. llvm.func @main() |
mlir/test/Integration/Dialect/Memref/cast-runtime-verification.mlir | ||
---|---|---|
68 | Interesting, I was thinking about the sparse tests (e.g., Integration/Dialect/SparseTensor/CPU/sparse_sum.mlir). But maybe they also exit with error code 1. |
mlir/test/Integration/Dialect/Memref/cast-runtime-verification.mlir | ||
---|---|---|
68 | From what I see Integration/Dialect/SparseTensor/CPU/sparse_sum.mlir does not create any runtime errors. |
Since this is my first commit, I can't commit it by myself.
Can you please commit it for me? (https://llvm.org/docs/Phabricator.html#committing-someone-s-change-from-phabricator)
Thanks!
Could we return %c0 here instead?