You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
# Tests for the keyword "failure" in the stderr of the optimization pass
|
|
mlir-opt $1 -test-mlir-reducer > /tmp/stdout.$$ 2>/tmp/stderr.$$
|
|
|
|
if [ $? -ne 0 ] && grep 'failure' /tmp/stderr.$$; then
|
|
exit 1
|
|
#Interesting behavior
|
|
else
|
|
exit 0
|
|
fi
|