Skip to content

Commit e1ef423

Browse files
committed
change art name
1 parent af7a421 commit e1ef423

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
if: always()
9999
with:
100100
path: D:/ci-logs
101-
name: tests-trace
101+
name: tests-ntcalls
102102

103103
nightly-checks:
104104
runs-on: ubuntu-latest

minion-tests/src/master.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ fn execute_single_test(case: &dyn TestCase, exec_opts: ExecuteOptions) -> Outcom
9292
cmd.arg("-o");
9393

9494
let script_file_path = tmp.path().join("cdb-script.txt");
95-
let logs_path = tmp.path().join(format!("{}-ntapi-logs", case.name()));
95+
let logs_path = tmp.path().join(format!("strace-ntapi-{}", case.name()));
96+
println!("Saving logs to {}", logs_path.display());
9697
std::fs::write(
9798
&script_file_path,
9899
[
@@ -131,9 +132,6 @@ fn execute_single_test(case: &dyn TestCase, exec_opts: ExecuteOptions) -> Outcom
131132
cmd.env(crate::WORKER_ENV_NAME, "1");
132133
cmd.env("TEST", case.name());
133134
let status = cmd.status().unwrap();
134-
if let Some(p) = temp_logs_dir {
135-
std::fs::rename(p, format!("./strace-{}", case.name())).unwrap();
136-
}
137135
if status.success() {
138136
Outcome::Success
139137
} else {

0 commit comments

Comments
 (0)