test: Avoid matching three X's

This helps my "WIP" detector script avoid false positives. It is a
simple script which helps me find release critical problems.
This commit is contained in:
James Shubin
2017-03-01 22:37:08 -05:00
parent 73ccbb69ea
commit 5f060d60a7
3 changed files with 4 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ set -o pipefail
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )" # dir!
cd "$DIR" >/dev/null # work from main mgmt directory
make build
T=`mktemp --tmpdir -d tmp.XXX`
T=`mktemp --tmpdir -d tmp.X'X'X` # add quotes to avoid matching three X's
cp -a ./mgmt "$T"/mgmt.1
make clean
make build