-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
986c5f0
commit d4f8dd4
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
:: Script to run unit test program | ||
:: | ||
:: Usage: | ||
:: | ||
:: .\runtests.bat x64\{Debug|Release} | ||
:: | ||
|
||
:: Copy dependent DLLs to the named build directory | ||
echo Copying DLLs | ||
copy packages\zlib_native.redist.1.2.11\build\native\bin\x64\Debug\*.dll %1 | ||
copy packages\zlib_native.redist.1.2.11\build\native\bin\x64\Release\*.dll %1 | ||
|
||
:: Run unit test program | ||
echo Running %1\testpdfio.exe | ||
cd %1 | ||
testpdfio.exe |