Lines Matching refs:node
319 // /tmp/node-test-realpath-f1 -> $tmpDir/node-test-realpath-d1/foo
320 // /tmp/node-test-realpath-d1 -> $tmpDir/node-test-realpath-d2
321 // /tmp/node-test-realpath-d2/foo -> $tmpDir/node-test-realpath-f2
322 // /tmp/node-test-realpath-f2
329 const entry = tmp('node-test-realpath-f1');
330 try { fs.unlinkSync(tmp('node-test-realpath-d2/foo')); } catch {
333 try { fs.rmdirSync(tmp('node-test-realpath-d2')); } catch {
336 fs.mkdirSync(tmp('node-test-realpath-d2'), 0o700);
339 [entry, `${tmpDir}/node-test-realpath-d1/foo`],
340 [tmp('node-test-realpath-d1'),
341 `${tmpDir}/node-test-realpath-d2`],
342 [tmp('node-test-realpath-d2/foo'), '../node-test-realpath-f2'],
343 [tmp('node-test-realpath-f2'),
357 unlink.push(tmp('node-test-realpath-d2'));
490 // `-- link -> /tmp/node-test-realpath-abs-kids/a/b/
501 const root = `${tmpAbsDir}/node-test-realpath-abs-kids`;