From 754211eead0e6018f9a38f3980efab3c71507f4f Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Fri, 28 Aug 2020 15:50:12 -0600 Subject: [PATCH] raco pkg: adjust tests to use PLTUSERHOME The tests formerly set `PLTADDONDIR` to separate runs, but that no longer makes the cache directory separate. Setting `PLTUSERHOME` is a more complete separation. --- pkgs/racket-test/tests/pkg/util.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/racket-test/tests/pkg/util.rkt b/pkgs/racket-test/tests/pkg/util.rkt index 6aad170129..d813ff8eef 100644 --- a/pkgs/racket-test/tests/pkg/util.rkt +++ b/pkgs/racket-test/tests/pkg/util.rkt @@ -114,7 +114,7 @@ (parameterize ([current-environment-variables (environment-variables-copy (current-environment-variables))]) - (putenv "PLTADDONDIR" tmp-dir-s) + (putenv "PLTUSERHOME" tmp-dir-s) (t))) (λ () (delete-directory/files tmp-dir))))