summaryrefslogtreecommitdiff
path: root/Test/dafny3/runtest.bat
blob: 82fd878c6c7ebd61a93b68c7cd60db20888f40e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@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
) do (
  echo.
  echo -------------------- %%f --------------------
  %DAFNY_EXE% /compile:0 /dprint:out.dfy.tmp %* %%f
)