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

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

for %%f in (
  Iter.dfy Streams.dfy Dijkstra.dfy CachedContainer.dfy
  SimpleInduction.dfy SimpleCoinduction.dfy CalcExample.dfy
  InductionVsCoinduction.dfy Zip.dfy SetIterations.dfy
  Paulson.dfy
) do (
  echo.
  echo -------------------- %%f --------------------
  %DAFNY_EXE% /compile:0 /dprint:out.dfy.tmp %* %%f
)