We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a233a8 commit 5cf973bCopy full SHA for 5cf973b
Example/TestChanges.cmd
@@ -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
9
+
10
+PowerShell ..\sql2doxygen.ps1 Example.sql > Output.sql
11
+if errorlevel 1 (
12
+ echo.
13
+ echo ERROR: Failed to convert Example.sql
14
15
+ PowerShell ..\sql2doxygen.ps1 Example.sql
16
+ exit /b 1
17
+)
18
19
+ss diff -DS Output.sql
20
21
+ echo ERROR: Differences detected
22
23
0 commit comments