better gen_expected script
This commit is contained in:
parent
70bae7487e
commit
8c2076d4f2
|
@ -1,10 +1,12 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
argsFile=$1.args
|
argsFile=$1.args
|
||||||
if [ -e ${argsFile} ]; then
|
if [ -e ${argsFile} ]; then
|
||||||
args=$(cat ${argsFile})
|
args=$(cat ${argsFile})
|
||||||
fi
|
fi
|
||||||
echo "Args:" ${args}
|
echo "Args:" ${args}
|
||||||
dfmt --brace_style=allman ${args} $1.d > allman/$1.d.ref
|
../bin/dfmt --brace_style=allman ${args} $1.d > allman/$1.d.ref
|
||||||
dfmt --brace_style=otbs ${args} $1.d > otbs/$1.d.ref
|
../bin/dfmt --brace_style=otbs ${args} $1.d > otbs/$1.d.ref
|
||||||
|
|
||||||
echo "------------------"
|
echo "------------------"
|
||||||
echo "allman:"
|
echo "allman:"
|
||||||
|
|
Loading…
Reference in New Issue