* Ignore output programs

This commit is contained in:
Michaël Van Canneyt 2022-05-01 16:22:55 +02:00
parent 6c33e240ff
commit ddfe51415b
11 changed files with 68 additions and 0 deletions

15
packages/fcl-db/examples/.gitignore vendored Normal file
View 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
View File

@ -0,0 +1,8 @@
dbtestframework_gui
dbtestframework
testdddiff
testjsondataset
testsqlfiles
testsqlscanner_gui
testsqlscanner
testsqlscript

2
packages/fcl-hash/examples/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
authenticator
gentotp

1
packages/fcl-js/tests/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
testjs

5
packages/fcl-json/tests/.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
testjson2code
testjsonconf
testjsondata
testjsonparser
testjson

View File

@ -0,0 +1 @@
testmustache

View File

@ -0,0 +1,3 @@
*.ini
demorestbridge
cmdclient/cmdclient

11
packages/paszlib/examples/.gitignore vendored Normal file
View File

@ -0,0 +1,11 @@
example2
example
extractodt
fpunzipper
fpzipper
Makefile
minigzip
miniunz
minizip
testgzstream
testsingle

View 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
View File

@ -0,0 +1,2 @@
files
testsingle

1
packages/regexpr/tests/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
testregexpr