mirror of https://github.com/llvm/torch-mlir
19 lines
293 B
Bash
19 lines
293 B
Bash
#!/bin/bash
|
|
|
|
# Script for invoking all test tests. It also prints out a banner in case
|
|
# of success.
|
|
# TODO: I think we can just remove this.
|
|
|
|
set -euo pipefail
|
|
td="$(realpath $(dirname $0)/..)"
|
|
|
|
cd $td/build
|
|
|
|
ninja
|
|
ninja check-npcomp-all
|
|
|
|
echo
|
|
echo "========"
|
|
echo "ALL PASS"
|
|
echo "========"
|