@@ -0,0 +1,15 @@
+createsql
+dbftool
+demomacros
+demotypesafeaccess
+fbadmindemo
+fbeventstest
+loadlibdemo
+logsqldemo
+parsesql
+pqeventstest
+showcsv
+sqlite3extdemo
+sqlite3loadlib
+sqlparser
+
@@ -0,0 +1,8 @@
+dbtestframework_gui
+dbtestframework
+testdddiff
+testjsondataset
+testsqlfiles
+testsqlscanner_gui
+testsqlscanner
+testsqlscript
@@ -0,0 +1,2 @@
+authenticator
+gentotp
@@ -0,0 +1 @@
+testjs
@@ -0,0 +1,5 @@
+testjson2code
+testjsonconf
+testjsondata
+testjsonparser
+testjson
+testmustache
@@ -0,0 +1,3 @@
+*.ini
+demorestbridge
+cmdclient/cmdclient
@@ -0,0 +1,11 @@
+example2
+example
+extractodt
+fpunzipper
+fpzipper
+Makefile
+minigzip
+miniunz
+minizip
+testgzstream
+testsingle
@@ -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.
+files
+testregexpr