about summary refs log tree commit diff
path: root/Test
diff options
context:
space:
mode:
authorDaniel Shahaf <d.s@daniel.shahaf.name>2020-07-02 17:48:08 +0000
committerDaniel Shahaf <d.s@daniel.shahaf.name>2020-07-05 11:11:22 +0000
commit805b946b53c881717d2188cba994629a79185bac (patch)
tree08ec241d55cf72fc152dcd4e96d003576de43917 /Test
parent63fde0b744130d95e463299e204ddc5c46199b08 (diff)
downloadzsh-805b946b53c881717d2188cba994629a79185bac.tar.gz
zsh-805b946b53c881717d2188cba994629a79185bac.tar.xz
zsh-805b946b53c881717d2188cba994629a79185bac.zip
46174/0002: test harness: Restore indentation after the previous commit. No functional change.
Diffstat (limited to 'Test')
-rw-r--r--Test/comptest36
1 files changed, 18 insertions, 18 deletions
diff --git a/Test/comptest b/Test/comptest
index 4a5fcb4ba..b14d4c959 100644
--- a/Test/comptest
+++ b/Test/comptest
@@ -112,25 +112,25 @@ zpty_run() {
 }
 
 comptesteval () {
- {
-  # Avoid symlink attacks on the predictable filename
-  # TODO: either use =(:) or create this file in the tests' workdir
-  local tmp=/tmp/comptest.$$
-  () {
-    setopt localoptions NO_CLOBBER ERR_EXIT
-    print -lr - "$@" > $tmp
-  } "$@"
+   {
+     # Avoid symlink attacks on the predictable filename
+     # TODO: either use =(:) or create this file in the tests' workdir
+     local tmp=/tmp/comptest.$$
+     () {
+       setopt localoptions NO_CLOBBER ERR_EXIT
+       print -lr - "$@" > $tmp
+     } "$@"
 
-  # zpty_flush Before comptesteval
-  zpty -w zsh ". ${(q)tmp}"
-  zpty -r -m zsh log_eval "*<PROMPT>*" || {
-    print "prompt hasn't appeared."
-    return 1
-  }
-  zpty_flush After comptesteval
- } always {
-  rm $tmp
- }
+     # zpty_flush Before comptesteval
+     zpty -w zsh ". ${(q)tmp}"
+     zpty -r -m zsh log_eval "*<PROMPT>*" || {
+       print "prompt hasn't appeared."
+       return 1
+     }
+     zpty_flush After comptesteval
+   } always {
+     rm $tmp
+   }
 }
 
 comptest () {