Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: release memory held by a testsuite after we're done with it.
As #61 (comment) Minor cleanup. Doing it this way should be faster though (no constructor call overhead, less code to begin with). * Release memory held by a testsuite after we're done with it. When a test finishes and the result has been written out the reference to the testsuite in the suites object can be dropped. Ideally we'd drop the reference from the array entirely but that involves recreating the array and *that* might race. So instead we just make the testsuite object point to 'null'.
- Loading branch information