mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-07 03:00:58 +01:00
* Ignore output programs
This commit is contained in:
parent
6c33e240ff
commit
ddfe51415b
15
packages/fcl-db/examples/.gitignore
vendored
Normal file
15
packages/fcl-db/examples/.gitignore
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
createsql
|
||||||
|
dbftool
|
||||||
|
demomacros
|
||||||
|
demotypesafeaccess
|
||||||
|
fbadmindemo
|
||||||
|
fbeventstest
|
||||||
|
loadlibdemo
|
||||||
|
logsqldemo
|
||||||
|
parsesql
|
||||||
|
pqeventstest
|
||||||
|
showcsv
|
||||||
|
sqlite3extdemo
|
||||||
|
sqlite3loadlib
|
||||||
|
sqlparser
|
||||||
|
|
||||||
8
packages/fcl-db/tests/.gitignore
vendored
Normal file
8
packages/fcl-db/tests/.gitignore
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
dbtestframework_gui
|
||||||
|
dbtestframework
|
||||||
|
testdddiff
|
||||||
|
testjsondataset
|
||||||
|
testsqlfiles
|
||||||
|
testsqlscanner_gui
|
||||||
|
testsqlscanner
|
||||||
|
testsqlscript
|
||||||
2
packages/fcl-hash/examples/.gitignore
vendored
Normal file
2
packages/fcl-hash/examples/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
authenticator
|
||||||
|
gentotp
|
||||||
1
packages/fcl-js/tests/.gitignore
vendored
Normal file
1
packages/fcl-js/tests/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
testjs
|
||||||
5
packages/fcl-json/tests/.gitignore
vendored
Normal file
5
packages/fcl-json/tests/.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
testjson2code
|
||||||
|
testjsonconf
|
||||||
|
testjsondata
|
||||||
|
testjsonparser
|
||||||
|
testjson
|
||||||
1
packages/fcl-mustache/tests/.gitignore
vendored
Normal file
1
packages/fcl-mustache/tests/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
testmustache
|
||||||
3
packages/fcl-web/examples/restbridge/.gitignore
vendored
Normal file
3
packages/fcl-web/examples/restbridge/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
*.ini
|
||||||
|
demorestbridge
|
||||||
|
cmdclient/cmdclient
|
||||||
11
packages/paszlib/examples/.gitignore
vendored
Normal file
11
packages/paszlib/examples/.gitignore
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
example2
|
||||||
|
example
|
||||||
|
extractodt
|
||||||
|
fpunzipper
|
||||||
|
fpzipper
|
||||||
|
Makefile
|
||||||
|
minigzip
|
||||||
|
miniunz
|
||||||
|
minizip
|
||||||
|
testgzstream
|
||||||
|
testsingle
|
||||||
19
packages/paszlib/examples/testsingle.pas
Normal file
19
packages/paszlib/examples/testsingle.pas
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
program testsingle;
|
||||||
|
|
||||||
|
uses sysutils, zipper;
|
||||||
|
|
||||||
|
Var
|
||||||
|
FN : String;
|
||||||
|
|
||||||
|
begin
|
||||||
|
FN:=GetTempFileName;
|
||||||
|
TUnzipper.Unzip('test.zip','files/file1.txt',FN);
|
||||||
|
if not FileExists(FN) then
|
||||||
|
Writeln('Error')
|
||||||
|
else
|
||||||
|
begin
|
||||||
|
DeleteFile(FN);
|
||||||
|
Writeln('OK');
|
||||||
|
end;
|
||||||
|
end.
|
||||||
|
|
||||||
2
packages/paszlib/tests/.gitignore
vendored
Normal file
2
packages/paszlib/tests/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
files
|
||||||
|
testsingle
|
||||||
1
packages/regexpr/tests/.gitignore
vendored
Normal file
1
packages/regexpr/tests/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
testregexpr
|
||||||
Loading…
Reference in New Issue
Block a user