summaryrefslogtreecommitdiff
path: root/Test/vstte2012/runtest.bat
blob: c2236cf73e47a81c1d9293285231eea2eeeddfd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@echo off
setlocal

set BINARIES=..\..\Binaries
set DAFNY_EXE=%BINARIES\Dafny.exe

for %%f in (
    Two-Way-Sort.dfy
    Combinators.dfy
    RingBuffer.dfy RingBufferAuto.dfy
    Tree.dfy
    BreadthFirstSearch.dfy
  ) do (
  echo.
  echo -------------------- %%f --------------------
  %DAFNY_EXE% /compile:0 /dprint:out.dfy.tmp %* %%f
)