diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-07-29 14:05:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-29 23:05:26 +0200 |
commit | 6b3c77e7f4421267c551b1cd84717a19c65be2c5 (patch) | |
tree | d67dab6f5bda58fc3d1ec151cee1a6f404086064 /tests/destructor/tnewruntime_misc.nim | |
parent | bbe05c15326c7a62d15c0fe47d1c6e1be3ab11a8 (diff) | |
download | Nim-6b3c77e7f4421267c551b1cd84717a19c65be2c5.tar.gz |
Remove tracking of environment from osenv.nim v2 (#18575)
* Remove unnecessary environment tracking * try to fix windows * fix delEnv * make putEnv work on windows even with empty values; improve tests: add tests, add js, vm testing * [skip ci] fix changelog Co-authored-by: Caden Haustein <code@brightlysalty.33mail.com>
Diffstat (limited to 'tests/destructor/tnewruntime_misc.nim')
-rw-r--r-- | tests/destructor/tnewruntime_misc.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/destructor/tnewruntime_misc.nim b/tests/destructor/tnewruntime_misc.nim index 48ea36b7c..ac061f2f7 100644 --- a/tests/destructor/tnewruntime_misc.nim +++ b/tests/destructor/tnewruntime_misc.nim @@ -7,7 +7,7 @@ axc ... destroying GenericObj[T] GenericObj[system.int] test -(allocCount: 13, deallocCount: 11) +(allocCount: 12, deallocCount: 10) 3''' """ |