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 3
3
set " RUST_BACKTRACE = full"
4
4
set " QLTEST_LOG = %CODEQL_EXTRACTOR_RUST_LOG_DIR% /qltest.log"
5
5
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
7
7
8
8
if %ERRORLEVEL% neq 0 (
9
9
type " %QLTEST_LOG% "
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ set -o pipefail
5
5
6
6
export RUST_BACKTRACE=full
7
7
QLTEST_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) )"
9
10
trap ' rm -f "$TMP_OUT"' EXIT
10
11
# put full-color output on the side, but remove the color codes from the log file
11
12
# also, print (colored) output only in case of failure
You can’t perform that action at this time.
0 commit comments