@@ -12,26 +12,38 @@ const join = require('path').join;
12
12
const tmpdir = require ( '../common/tmpdir' ) ;
13
13
tmpdir . refresh ( ) ;
14
14
15
- const fdsToCloseOnExit = [ ] ;
16
15
{
17
16
/* writeFileSync() test. */
18
17
const filename = join ( tmpdir . path , 'test.txt' ) ;
19
18
20
19
/* Open the file descriptor. */
21
20
const fd = fs . openSync ( filename , 'w' ) ;
22
- fdsToCloseOnExit . push ( fd ) ;
23
-
24
- /* Write only five characters, so that the position moves to five. */
25
- assert . deepStrictEqual ( fs . writeSync ( fd , 'Hello' ) , 5 ) ;
26
- assert . deepStrictEqual ( fs . readFileSync ( filename ) . toString ( ) , 'Hello' ) ;
21
+ try {
22
+ /* Write only five characters, so that the position moves to five. */
23
+ assert . deepStrictEqual ( fs . writeSync ( fd , 'Hello' ) , 5 ) ;
24
+ assert . deepStrictEqual ( fs . readFileSync ( filename ) . toString ( ) , 'Hello' ) ;
27
25
28
- /* Write some more with writeFileSync(). */
29
- fs . writeFileSync ( fd , 'World' ) ;
26
+ /* Write some more with writeFileSync(). */
27
+ fs . writeFileSync ( fd , 'World' ) ;
30
28
31
- /* New content should be written at position five, instead of zero. */
32
- assert . deepStrictEqual ( fs . readFileSync ( filename ) . toString ( ) , 'HelloWorld' ) ;
29
+ /* New content should be written at position five, instead of zero. */
30
+ assert . deepStrictEqual ( fs . readFileSync ( filename ) . toString ( ) , 'HelloWorld' ) ;
31
+ } finally {
32
+ fs . closeSync ( fd ) ;
33
+ }
33
34
}
34
35
36
+ const fdsToCloseOnExit = [ ] ;
37
+ process . on ( 'beforeExit' , common . mustCall ( ( ) => {
38
+ for ( const fd of fdsToCloseOnExit ) {
39
+ try {
40
+ fs . closeSync ( fd ) ;
41
+ } catch {
42
+ // Failed to close, ignore
43
+ }
44
+ }
45
+ } ) ) ;
46
+
35
47
{
36
48
/* writeFile() test. */
37
49
const file = join ( tmpdir . path , 'test1.txt' ) ;
@@ -82,13 +94,3 @@ const fdsToCloseOnExit = [];
82
94
83
95
controller . abort ( ) ;
84
96
}
85
-
86
- process . on ( 'beforeExit' , ( ) => {
87
- for ( const fd of fdsToCloseOnExit ) {
88
- try {
89
- fs . closeSync ( fd ) ;
90
- } catch {
91
- // Failed to close, ignore
92
- }
93
- }
94
- } ) ;
0 commit comments