Ver código fonte

* Ignore output programs

Michaël Van Canneyt 3 anos atrás
pai
commit
ddfe51415b

+ 15 - 0
packages/fcl-db/examples/.gitignore

@@ -0,0 +1,15 @@
+createsql
+dbftool
+demomacros
+demotypesafeaccess
+fbadmindemo
+fbeventstest
+loadlibdemo
+logsqldemo
+parsesql
+pqeventstest
+showcsv
+sqlite3extdemo
+sqlite3loadlib
+sqlparser
+

+ 8 - 0
packages/fcl-db/tests/.gitignore

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

+ 2 - 0
packages/fcl-hash/examples/.gitignore

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

+ 1 - 0
packages/fcl-js/tests/.gitignore

@@ -0,0 +1 @@
+testjs

+ 5 - 0
packages/fcl-json/tests/.gitignore

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

+ 1 - 0
packages/fcl-mustache/tests/.gitignore

@@ -0,0 +1 @@
+testmustache

+ 3 - 0
packages/fcl-web/examples/restbridge/.gitignore

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

+ 11 - 0
packages/paszlib/examples/.gitignore

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

+ 19 - 0
packages/paszlib/examples/testsingle.pas

@@ -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 - 0
packages/paszlib/tests/.gitignore

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

+ 1 - 0
packages/regexpr/tests/.gitignore

@@ -0,0 +1 @@
+testregexpr