(command.CommandList
  children: [
    (C {(echo)} {(SQ <'--- svstat handles new and nonexistent directories'>)})
    (command.Subshell
      command_list: 
        (command.CommandList
          children: [
            (command.Sentence
              child: (C {(echo)} {(SQ <'#!/bin/sh'>)})
              terminator: <Op_Semi ';'>
            )
            (C {(echo)} {(echo)} {(hi)})
          ]
        )
      redirects: [(redir.Redir op:<Redir_Great '>'> fd:16777215 arg_word:{(test.sv/run)})]
    )
    (C {(chmod)} {(755)} {(test.sv/run)})
    (C {(touch)} {(test.sv/down)})
    (command.CommandList
      children: [
        (command.Sentence
          child: (C {(svstat)} {(test.sv)} {(nonexistent)})
          terminator: <Op_Semi ';'>
        )
        (C {(echo)} {($ VSub_QMark '$?')})
      ]
    )
    (C {(echo)} {(SQ <'--- svc handles new and nonexistent directories'>)})
    (command.CommandList
      children: [
        (command.Sentence
          child: (C {(svc)} {(test.sv)} {(nonexistent)})
          terminator: <Op_Semi ';'>
        )
        (C {(echo)} {($ VSub_QMark '$?')})
      ]
    )
    (C {(echo)} {(SQ <'--- svok handles new and nonexistent directories'>)})
    (command.CommandList
      children: [
        (command.Sentence child:(C {(svok)} {(test.sv)}) terminator:<Op_Semi ';'>)
        (C {(echo)} {($ VSub_QMark '$?')})
      ]
    )
    (command.CommandList
      children: [
        (command.Sentence child:(C {(svok)} {(nonexistent)}) terminator:<Op_Semi ';'>)
        (C {(echo)} {($ VSub_QMark '$?')})
      ]
    )
    (C {(echo)} {(SQ <'--- supervise handles nonexistent directories'>)})
    (command.CommandList
      children: [
        (command.Sentence child:(C {(supervise)} {(nonexistent)}) terminator:<Op_Semi ';'>)
        (C {(echo)} {($ VSub_QMark '$?')})
      ]
    )
  ]
)