diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2022-05-23 12:35:02 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-23 12:35:02 -0400 |
| commit | b65d5024ef5e61301a6c8c4380bc20f4949ac60d (patch) | |
| tree | f159f6cced28a3094704e9ee2475bceba470bdc3 /cli/tests/testdata/task/task_no_args.out | |
| parent | 69be1f3cf7d11bb6b440f5d1e65988ed7c76f53d (diff) | |
fix: read raw stdin to prevent buffering (regression) (#14704)
Diffstat (limited to 'cli/tests/testdata/task/task_no_args.out')
| -rw-r--r-- | cli/tests/testdata/task/task_no_args.out | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/tests/testdata/task/task_no_args.out b/cli/tests/testdata/task/task_no_args.out index 7951700bb..e8c034a2d 100644 --- a/cli/tests/testdata/task/task_no_args.out +++ b/cli/tests/testdata/task/task_no_args.out @@ -7,5 +7,7 @@ Available tasks: echo 1 - exit_code_5 echo $(echo 10 ; exit 2) && exit 5 +- piped + echo 12345 | (deno eval 'const b = new Uint8Array(1);Deno.stdin.readSync(b);console.log(b)' && deno eval 'const b = new Uint8Array(1);Deno.stdin.readSync(b);console.log(b)') - strings deno run main.ts && deno eval "console.log(\"test\")" |
