t10231.nim 268 B

12345678910111213141516
  1. discard """
  2. target: cpp
  3. action: run
  4. exitcode: 0
  5. """
  6. import os
  7. # consider moving this inside tosproc (taking care that it's for cpp mode)
  8. if paramCount() == 0:
  9. # main process
  10. doAssert execShellCmd(getAppFilename().quoteShell & " test") == 1
  11. else:
  12. quit 1