Home | History | Annotate | Download | only in etc

Lines Matching refs:VERIFY

51 VERIFY="y" # y=yes,n=no,s=softfail
185 elif [ "x$1" = "x--no-verify" ]; then
186 VERIFY="n"
188 elif [ "x$1" = "x--verify-soft-fail" ]; then
189 VERIFY="s"
247 if [ "$VERIFY" = "y" ]; then
258 if [ "$VERIFY" = "y" ]; then
261 elif [ "$VERIFY" = "s" ]; then
265 else # VERIFY = "n"
325 if [ "$VERIFY" = "y" ] ; then
327 elif [ "$VERIFY" = "s" ]; then
328 COMPILE_FLAGS="${COMPILE_FLAGS} --compiler-filter=verify-at-runtime"
330 else # VERIFY = "n"
331 COMPILE_FLAGS="${COMPILE_FLAGS} --compiler-filter=verify-none"
338 if [ "$VERIFY" = "y" ] ; then
339 COMPILE_FLAGS="${COMPILE_FLAGS} --compiler-filter=verify-at-runtime"
343 INT_OPTS="${INT_OPTS} -Xcompiler-option --compiler-filter=verify-at-runtime"
346 COMPILE_FLAGS="${COMPILE_FLAGS} --compiler-filter=verify-none"
349 INT_OPTS="${INT_OPTS} -Xcompiler-option --compiler-filter=verify-none"