File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 33set " RUST_BACKTRACE = full"
44set " QLTEST_LOG = %CODEQL_EXTRACTOR_RUST_LOG_DIR% /qltest.log"
55
6- type NUL && " %CODEQL_EXTRACTOR_RUST_ROOT% /tools/%CODEQL_PLATFORM% /extractor" --qltest > " %QLTEST_LOG% " 2 >& 1
6+ type NUL && " %CODEQL_EXTRACTOR_RUST_ROOT% /tools/%CODEQL_PLATFORM% /extractor" --qltest --logging-verbosity=progress+ > " %QLTEST_LOG% " 2 >& 1
77
88if %ERRORLEVEL% neq 0 (
99 type " %QLTEST_LOG% "
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ set -o pipefail
55
66export RUST_BACKTRACE=full
77QLTEST_LOG=" $CODEQL_EXTRACTOR_RUST_LOG_DIR " /qltest.log
8- TMP_OUT=" $( mktemp) "
8+ mkdir -p " $CODEQL_EXTRACTOR_RUST_SCRATCH_DIR "
9+ TMP_OUT=" $( mktemp --tmpdir=" $CODEQL_EXTRACTOR_RUST_SCRATCH_DIR " qltest-XXXXXX.log) )"
910trap ' rm -f "$TMP_OUT"' EXIT
1011# put full-color output on the side, but remove the color codes from the log file
1112# also, print (colored) output only in case of failure
You can’t perform that action at this time.
0 commit comments