summary refs log tree commit diff stats
path: root/tests/stdlib/t10231.nim
blob: 3b2b684f3c16a37034c2df3255b65b59c1a6d32b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
discard """
  targets: "cpp"
  action: run
  exitcode: 0
"""

import os

# consider moving this inside tosproc (taking care that it's for cpp mode)

if paramCount() == 0:
  # main process
  doAssert execShellCmd(getAppFilename().quoteShell & " test") == 1
else:
  quit 1