Skip to content

Commit 5cf973b

Browse files
author
Admin
committed
Initial version.
1 parent 9a233a8 commit 5cf973b

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

Example/TestChanges.cmd

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
@echo off
2+
rem **********************************************************************
3+
rem Test script to convert the sql script to C-code and run a diff on
4+
rem the results to show what's broken.
5+
rem
6+
rem NB: The diff is done using SourceSafe and is against the currently
7+
rem checked in revision.
8+
rem **********************************************************************
9+
10+
PowerShell ..\sql2doxygen.ps1 Example.sql > Output.sql
11+
if errorlevel 1 (
12+
echo.
13+
echo ERROR: Failed to convert Example.sql
14+
echo.
15+
PowerShell ..\sql2doxygen.ps1 Example.sql
16+
exit /b 1
17+
)
18+
19+
ss diff -DS Output.sql
20+
if errorlevel 1 (
21+
echo ERROR: Differences detected
22+
exit /b 1
23+
)

0 commit comments

Comments
 (0)