1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3435,13 +3435,13 @@ impl<'test> TestCx<'test> {
3435
3435
// ```
3436
3436
// base_dir/
3437
3437
// rmake.exe
3438
- // scratch /
3438
+ // rmake_out /
3439
3439
// ```
3440
- // having the executable separate from the scratch directory allows the recipes to
3441
- // `remove_dir_all(scratch )` without running into permission denied issues because
3442
- // the executable is not under the `scratch /` directory.
3440
+ // having the executable separate from the output artifacts directory allows the recipes to
3441
+ // `remove_dir_all($TMPDIR )` without running into permission denied issues because
3442
+ // the executable is not under the `rmake_out /` directory.
3443
3443
//
3444
- // This setup diverges from legacy Makefile run-make tests.
3444
+ // This setup intentionally diverges from legacy Makefile run-make tests.
3445
3445
let base_dir = cwd. join ( self . output_base_name ( ) ) ;
3446
3446
if base_dir. exists ( ) {
3447
3447
self . aggressive_rm_rf ( & base_dir) . unwrap ( ) ;
0 commit comments