summary refs log tree commit diff stats
path: root/tests/stdlib/t10231.nim
blob: 2bb64b475c2f91da1a051feb74b11b7c57979701 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
discard """
  target: 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