diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2007-05-29 14:50:28 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2007-05-29 14:50:28 +0000 |
commit | 52e5a75a7a8a4a16579e708a006f6346ce765aeb (patch) | |
tree | e4e6e92d27c96845720c36114e842cfbc92eef92 /Test/E01options.ztst | |
parent | 29b7123647bc3b70911bbb2caf85238d22d160c8 (diff) | |
download | zsh-52e5a75a7a8a4a16579e708a006f6346ce765aeb.tar.gz zsh-52e5a75a7a8a4a16579e708a006f6346ce765aeb.tar.xz zsh-52e5a75a7a8a4a16579e708a006f6346ce765aeb.zip |
23486: use {fd} syntax to get fd's for tests
Diffstat (limited to 'Test/E01options.ztst')
-rw-r--r-- | Test/E01options.ztst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Test/E01options.ztst b/Test/E01options.ztst index 5bbf1b590..f8ab297c0 100644 --- a/Test/E01options.ztst +++ b/Test/E01options.ztst @@ -668,7 +668,7 @@ >hello # This tests for another race in multios. - print 'This test hangs the shell when it fails...' >&8 + print -u $ZTST_fd 'This test hangs the shell when it fails...' setopt multios echo These are the contents of the file >multio_race.out multio_race_fn() { cat; } |