diff options
Diffstat (limited to 'cpp')
130 files changed, 399 insertions, 108 deletions
diff --git a/cpp/config/makegitignore.py b/cpp/config/makegitignore.py index 6d593b3b9e3..28f167722de 100755 --- a/cpp/config/makegitignore.py +++ b/cpp/config/makegitignore.py @@ -101,9 +101,9 @@ def usage(): print "-h Show this message." print -icee = False + try: - opts, args = getopt.getopt(sys.argv[1:], "he") + opts, args = getopt.getopt(sys.argv[1:], "h") except getopt.GetoptError: usage() sys.exit(1) @@ -111,8 +111,7 @@ for o, a in opts: if o == "-h": usage() sys.exit(0) - elif o == "-e": - icee = True + if len(args) != 0: usage() sys.exit(1) @@ -129,10 +128,8 @@ else: print("cannot find top-level directory") sys.exit(1) -if icee: - makefiles = find(os.path.join(toplevel, "cppe"), "Makefile") -else: - makefiles = find(os.path.join(toplevel, "cpp"), "Makefile") + +makefiles = find(os.path.join(toplevel, "cpp"), "Makefile") cwd = os.getcwd() gitIgnoreFiles = { } for i in makefiles: @@ -149,15 +146,15 @@ for i in makefiles: os.chdir(cwd) -excludePath = [ os.path.join(toplevel, "cpp", "bin"), os.path.join(toplevel, "cpp", "lib"), \ - os.path.join(toplevel, "cppe", "bin"), os.path.join(toplevel, "cppe", "lib") ] +excludePath = [ os.path.join(toplevel, "cpp", "bin"), os.path.join(toplevel, "cpp", "lib") ] for (path, files) in gitIgnoreFiles.iteritems(): if os.path.dirname(path) in excludePath: continue if not os.path.exists(path): print files - gitIgnore = open(path, "w") - gitIgnore.write(preamble); - gitIgnore.writelines(files) - gitIgnore.close() + if os.path.isdir(os.path.dirname(path)): + gitIgnore = open(path, "w") + gitIgnore.write(preamble); + gitIgnore.writelines(files) + gitIgnore.close() diff --git a/cpp/include/Freeze/.gitignore b/cpp/include/Freeze/.gitignore index 501ab8b0aca..a7fae586955 100644 --- a/cpp/include/Freeze/.gitignore +++ b/cpp/include/Freeze/.gitignore @@ -2,15 +2,16 @@ // IMPORTANT: Do not edit this file -- any edits made here will be lost! BackgroundSaveEvictor.h -DB.h CatalogData.h Connection.h ConnectionF.h -Exception.h +DB.h +Evictor.h EvictorF.h EvictorStorage.h -Evictor.h -TransactionalEvictor.h +Exception.h Transaction.h +TransactionalEvictor.h +PingObject.h Catalog.h CatalogIndexList.h diff --git a/cpp/include/Ice/.gitignore b/cpp/include/Ice/.gitignore index 7111772146c..a8a61279201 100644 --- a/cpp/include/Ice/.gitignore +++ b/cpp/include/Ice/.gitignore @@ -2,41 +2,41 @@ // IMPORTANT: Do not edit this file -- any edits made here will be lost! BuiltinSequences.h -CommunicatorF.h Communicator.h -ConnectionF.h +CommunicatorF.h Connection.h +ConnectionF.h Current.h Endpoint.h EndpointF.h EndpointTypes.h FacetMap.h Identity.h -ImplicitContextF.h ImplicitContext.h +ImplicitContextF.h +Instrumentation.h +InstrumentationF.h LocalException.h -LocatorF.h Locator.h -LoggerF.h +LocatorF.h Logger.h +LoggerF.h Metrics.h -ObjectAdapterF.h ObjectAdapter.h -ObjectFactoryF.h +ObjectAdapterF.h ObjectFactory.h -Instrumentation.h -InstrumentationF.h -PluginF.h +ObjectFactoryF.h Plugin.h -ProcessF.h +PluginF.h Process.h -PropertiesF.h -PropertiesAdmin.h +ProcessF.h Properties.h +PropertiesAdmin.h +PropertiesF.h RemoteLogger.h -RouterF.h Router.h -ServantLocatorF.h +RouterF.h ServantLocator.h +ServantLocatorF.h SliceChecksumDict.h Version.h diff --git a/cpp/include/IceGrid/.gitignore b/cpp/include/IceGrid/.gitignore index 195635b503d..9d13a816fbf 100644 --- a/cpp/include/IceGrid/.gitignore +++ b/cpp/include/IceGrid/.gitignore @@ -2,14 +2,13 @@ // IMPORTANT: Do not edit this file -- any edits made here will be lost! Admin.h -Discovery.h +Descriptor.h Exception.h FileParser.h Locator.h +Observer.h +PluginFacade.h Query.h Registry.h Session.h -Observer.h -Descriptor.h UserAccountMapper.h -PluginFacade.h diff --git a/cpp/include/IceSSL/.gitignore b/cpp/include/IceSSL/.gitignore index f53e54c68e3..8ff8c54a7de 100644 --- a/cpp/include/IceSSL/.gitignore +++ b/cpp/include/IceSSL/.gitignore @@ -1,5 +1,5 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! -EndpointInfo.h ConnectionInfo.h +EndpointInfo.h diff --git a/cpp/src/Freeze/.gitignore b/cpp/src/Freeze/.gitignore index b09bdea2d1e..fb47282b2ab 100644 --- a/cpp/src/Freeze/.gitignore +++ b/cpp/src/Freeze/.gitignore @@ -1,29 +1,31 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend BackgroundSaveEvictor.cpp -DB.cpp CatalogData.cpp Connection.cpp ConnectionF.cpp -Exception.cpp +DB.cpp +Evictor.cpp EvictorF.cpp EvictorStorage.cpp -Evictor.cpp -TransactionalEvictor.cpp +Exception.cpp Transaction.cpp +TransactionalEvictor.cpp PingObject.cpp BackgroundSaveEvictor.h -DB.h CatalogData.h Connection.h ConnectionF.h -Exception.h +DB.h +Evictor.h EvictorF.h EvictorStorage.h -Evictor.h -TransactionalEvictor.h +Exception.h Transaction.h +TransactionalEvictor.h PingObject.h Catalog.cpp CatalogIndexList.cpp diff --git a/cpp/src/FreezeScript/.gitignore b/cpp/src/FreezeScript/.gitignore new file mode 100644 index 00000000000..720f44c7047 --- /dev/null +++ b/cpp/src/FreezeScript/.gitignore @@ -0,0 +1,5 @@ +// Generated by makegitignore.py + +// IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend diff --git a/cpp/src/Glacier2/.gitignore b/cpp/src/Glacier2/.gitignore index 7cc85ffc850..093e464bbf3 100644 --- a/cpp/src/Glacier2/.gitignore +++ b/cpp/src/Glacier2/.gitignore @@ -1,5 +1,7 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend Instrumentation.cpp Instrumentation.h diff --git a/cpp/src/Glacier2CryptPermissionsVerifier/.gitignore b/cpp/src/Glacier2CryptPermissionsVerifier/.gitignore new file mode 100644 index 00000000000..720f44c7047 --- /dev/null +++ b/cpp/src/Glacier2CryptPermissionsVerifier/.gitignore @@ -0,0 +1,5 @@ +// Generated by makegitignore.py + +// IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend diff --git a/cpp/src/Glacier2Lib/.gitignore b/cpp/src/Glacier2Lib/.gitignore index f4cc829053e..95b4c5cf67d 100644 --- a/cpp/src/Glacier2Lib/.gitignore +++ b/cpp/src/Glacier2Lib/.gitignore @@ -1,6 +1,8 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend Metrics.cpp PermissionsVerifierF.cpp PermissionsVerifier.cpp diff --git a/cpp/src/Ice/.gitignore b/cpp/src/Ice/.gitignore index abeb5e2cf37..99bfe471904 100644 --- a/cpp/src/Ice/.gitignore +++ b/cpp/src/Ice/.gitignore @@ -1,81 +1,83 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend BuiltinSequences.cpp -CommunicatorF.cpp Communicator.cpp -ConnectionF.cpp +CommunicatorF.cpp Connection.cpp +ConnectionF.cpp Current.cpp Endpoint.cpp EndpointF.cpp EndpointTypes.cpp FacetMap.cpp Identity.cpp -ImplicitContextF.cpp ImplicitContext.cpp +ImplicitContextF.cpp +Instrumentation.cpp +InstrumentationF.cpp LocalException.cpp -LocatorF.cpp Locator.cpp -LoggerF.cpp +LocatorF.cpp Logger.cpp +LoggerF.cpp Metrics.cpp -ObjectAdapterF.cpp ObjectAdapter.cpp -ObjectFactoryF.cpp +ObjectAdapterF.cpp ObjectFactory.cpp -Instrumentation.cpp -InstrumentationF.cpp -PluginF.cpp +ObjectFactoryF.cpp Plugin.cpp -ProcessF.cpp +PluginF.cpp Process.cpp -PropertiesF.cpp -PropertiesAdmin.cpp +ProcessF.cpp Properties.cpp +PropertiesAdmin.cpp +PropertiesF.cpp RemoteLogger.cpp -RouterF.cpp Router.cpp -ServantLocatorF.cpp +RouterF.cpp ServantLocator.cpp +ServantLocatorF.cpp SliceChecksumDict.cpp Version.cpp BuiltinSequences.h -CommunicatorF.h Communicator.h -ConnectionF.h +CommunicatorF.h Connection.h +ConnectionF.h Current.h Endpoint.h EndpointF.h EndpointTypes.h FacetMap.h Identity.h -ImplicitContextF.h ImplicitContext.h +ImplicitContextF.h +Instrumentation.h +InstrumentationF.h LocalException.h -LocatorF.h Locator.h -LoggerF.h +LocatorF.h Logger.h +LoggerF.h Metrics.h -ObjectAdapterF.h ObjectAdapter.h -ObjectFactoryF.h +ObjectAdapterF.h ObjectFactory.h -Instrumentation.h -InstrumentationF.h -PluginF.h +ObjectFactoryF.h Plugin.h -ProcessF.h +PluginF.h Process.h -PropertiesF.h -PropertiesAdmin.h +ProcessF.h Properties.h +PropertiesAdmin.h +PropertiesF.h RemoteLogger.h -RouterF.h Router.h -ServantLocatorF.h +RouterF.h ServantLocator.h +ServantLocatorF.h SliceChecksumDict.h Version.h diff --git a/cpp/src/IceBox/.gitignore b/cpp/src/IceBox/.gitignore index 03d4ede8a70..c483621af47 100644 --- a/cpp/src/IceBox/.gitignore +++ b/cpp/src/IceBox/.gitignore @@ -1,5 +1,7 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend IceBox.cpp IceBox.h diff --git a/cpp/src/IceDiscovery/.gitignore b/cpp/src/IceDiscovery/.gitignore index 7ba1aabfc02..07790f7db33 100644 --- a/cpp/src/IceDiscovery/.gitignore +++ b/cpp/src/IceDiscovery/.gitignore @@ -1,5 +1,7 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend IceDiscovery.cpp IceDiscovery.h diff --git a/cpp/src/IceGrid/.gitignore b/cpp/src/IceGrid/.gitignore index baa4bbeaa15..7f8f1311b4d 100644 --- a/cpp/src/IceGrid/.gitignore +++ b/cpp/src/IceGrid/.gitignore @@ -1,12 +1,14 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! -DBTypes.cpp -DBTypes.h -IceLocatorDiscovery.cpp -IceLocatorDiscovery.h +.depend +.depend Internal.cpp +IceLocatorDiscovery.cpp +DBTypes.cpp Internal.h +IceLocatorDiscovery.h +DBTypes.h StringApplicationInfoDict.h StringApplicationInfoDict.cpp IdentityObjectInfoDict.h diff --git a/cpp/src/IceGridLib/.gitignore b/cpp/src/IceGridLib/.gitignore index 2a86c159391..9d7a58ce79a 100644 --- a/cpp/src/IceGridLib/.gitignore +++ b/cpp/src/IceGridLib/.gitignore @@ -1,27 +1,27 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend Admin.cpp -Discovery.cpp +Descriptor.cpp Exception.cpp FileParser.cpp Locator.cpp +Observer.cpp +PluginFacade.cpp Query.cpp Registry.cpp Session.cpp -Observer.cpp -Descriptor.cpp UserAccountMapper.cpp -PluginFacade.cpp Admin.h -Discovery.h +Descriptor.h Exception.h FileParser.h Locator.h +Observer.h +PluginFacade.h Query.h Registry.h Session.h -Observer.h -Descriptor.h UserAccountMapper.h -PluginFacade.h diff --git a/cpp/src/IceLocatorDiscovery/.gitignore b/cpp/src/IceLocatorDiscovery/.gitignore index fb1f34c05a4..45e29d8dd2d 100644 --- a/cpp/src/IceLocatorDiscovery/.gitignore +++ b/cpp/src/IceLocatorDiscovery/.gitignore @@ -1,5 +1,7 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend IceLocatorDiscovery.cpp IceLocatorDiscovery.h diff --git a/cpp/src/IcePatch2/.gitignore b/cpp/src/IcePatch2/.gitignore new file mode 100644 index 00000000000..720f44c7047 --- /dev/null +++ b/cpp/src/IcePatch2/.gitignore @@ -0,0 +1,5 @@ +// Generated by makegitignore.py + +// IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend diff --git a/cpp/src/IcePatch2Lib/.gitignore b/cpp/src/IcePatch2Lib/.gitignore index 1364efc1d87..a6ba57e6121 100644 --- a/cpp/src/IcePatch2Lib/.gitignore +++ b/cpp/src/IcePatch2Lib/.gitignore @@ -1,6 +1,8 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend FileInfo.cpp FileServer.cpp FileInfo.h diff --git a/cpp/src/IceSSL/.gitignore b/cpp/src/IceSSL/.gitignore index 88e034bad9d..981999c07ba 100644 --- a/cpp/src/IceSSL/.gitignore +++ b/cpp/src/IceSSL/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! -EndpointInfo.cpp +.depend +.depend ConnectionInfo.cpp -EndpointInfo.h +EndpointInfo.cpp ConnectionInfo.h +EndpointInfo.h diff --git a/cpp/src/IceStorm/.gitignore b/cpp/src/IceStorm/.gitignore index afe04b10dd3..a32b97ba56c 100644 --- a/cpp/src/IceStorm/.gitignore +++ b/cpp/src/IceStorm/.gitignore @@ -1,31 +1,33 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! -DBTypes.h -DBTypes.cpp -Instrumentation.cpp +.depend +.depend Election.cpp IceStormInternal.cpp +Instrumentation.cpp +LinkRecord.cpp LLURecord.cpp SubscriberRecord.cpp -LinkRecord.cpp -V32Format.cpp V31Format.cpp -Instrumentation.h +V32Format.cpp +DBTypes.cpp Election.h IceStormInternal.h +Instrumentation.h +LinkRecord.h LLURecord.h SubscriberRecord.h -LinkRecord.h -V32Format.h V31Format.h +V32Format.h +DBTypes.h +LinkRecord.h +LinkRecord.cpp +LLUMap.h +LLUMap.cpp SubscriberMap.h SubscriberMap.cpp -V32FormatDB.h -V32FormatDB.cpp V31FormatDB.h V31FormatDB.cpp -LLUMap.h -LLUMap.cpp -LinkRecord.h -LinkRecord.cpp +V32FormatDB.h +V32FormatDB.cpp diff --git a/cpp/src/IceStormLib/.gitignore b/cpp/src/IceStormLib/.gitignore index 4ac7fbb48ef..798077a2149 100644 --- a/cpp/src/IceStormLib/.gitignore +++ b/cpp/src/IceStormLib/.gitignore @@ -1,6 +1,8 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend IceStorm.cpp Metrics.cpp IceStorm.h diff --git a/cpp/src/IceUtil/.gitignore b/cpp/src/IceUtil/.gitignore new file mode 100644 index 00000000000..720f44c7047 --- /dev/null +++ b/cpp/src/IceUtil/.gitignore @@ -0,0 +1,5 @@ +// Generated by makegitignore.py + +// IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend diff --git a/cpp/src/IceXML/.gitignore b/cpp/src/IceXML/.gitignore new file mode 100644 index 00000000000..720f44c7047 --- /dev/null +++ b/cpp/src/IceXML/.gitignore @@ -0,0 +1,5 @@ +// Generated by makegitignore.py + +// IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend diff --git a/cpp/src/Slice/.gitignore b/cpp/src/Slice/.gitignore new file mode 100644 index 00000000000..720f44c7047 --- /dev/null +++ b/cpp/src/Slice/.gitignore @@ -0,0 +1,5 @@ +// Generated by makegitignore.py + +// IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend diff --git a/cpp/src/slice2confluence/.gitignore b/cpp/src/slice2confluence/.gitignore new file mode 100644 index 00000000000..3a412ca89c7 --- /dev/null +++ b/cpp/src/slice2confluence/.gitignore @@ -0,0 +1,4 @@ +// Generated by makegitignore.py + +// IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend diff --git a/cpp/src/slice2cpp/.gitignore b/cpp/src/slice2cpp/.gitignore new file mode 100644 index 00000000000..720f44c7047 --- /dev/null +++ b/cpp/src/slice2cpp/.gitignore @@ -0,0 +1,5 @@ +// Generated by makegitignore.py + +// IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend diff --git a/cpp/src/slice2cs/.gitignore b/cpp/src/slice2cs/.gitignore new file mode 100644 index 00000000000..720f44c7047 --- /dev/null +++ b/cpp/src/slice2cs/.gitignore @@ -0,0 +1,5 @@ +// Generated by makegitignore.py + +// IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend diff --git a/cpp/src/slice2freeze/.gitignore b/cpp/src/slice2freeze/.gitignore new file mode 100644 index 00000000000..720f44c7047 --- /dev/null +++ b/cpp/src/slice2freeze/.gitignore @@ -0,0 +1,5 @@ +// Generated by makegitignore.py + +// IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend diff --git a/cpp/src/slice2freezej/.gitignore b/cpp/src/slice2freezej/.gitignore new file mode 100644 index 00000000000..720f44c7047 --- /dev/null +++ b/cpp/src/slice2freezej/.gitignore @@ -0,0 +1,5 @@ +// Generated by makegitignore.py + +// IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend diff --git a/cpp/src/slice2html/.gitignore b/cpp/src/slice2html/.gitignore new file mode 100644 index 00000000000..720f44c7047 --- /dev/null +++ b/cpp/src/slice2html/.gitignore @@ -0,0 +1,5 @@ +// Generated by makegitignore.py + +// IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend diff --git a/cpp/src/slice2java/.gitignore b/cpp/src/slice2java/.gitignore new file mode 100644 index 00000000000..720f44c7047 --- /dev/null +++ b/cpp/src/slice2java/.gitignore @@ -0,0 +1,5 @@ +// Generated by makegitignore.py + +// IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend diff --git a/cpp/src/slice2js/.gitignore b/cpp/src/slice2js/.gitignore new file mode 100644 index 00000000000..720f44c7047 --- /dev/null +++ b/cpp/src/slice2js/.gitignore @@ -0,0 +1,5 @@ +// Generated by makegitignore.py + +// IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend diff --git a/cpp/src/slice2objc/.gitignore b/cpp/src/slice2objc/.gitignore new file mode 100644 index 00000000000..3a412ca89c7 --- /dev/null +++ b/cpp/src/slice2objc/.gitignore @@ -0,0 +1,4 @@ +// Generated by makegitignore.py + +// IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend diff --git a/cpp/src/slice2php/.gitignore b/cpp/src/slice2php/.gitignore new file mode 100644 index 00000000000..720f44c7047 --- /dev/null +++ b/cpp/src/slice2php/.gitignore @@ -0,0 +1,5 @@ +// Generated by makegitignore.py + +// IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend +.depend diff --git a/cpp/src/slice2py/.gitignore b/cpp/src/slice2py/.gitignore new file mode 100644 index 00000000000..3a412ca89c7 --- /dev/null +++ b/cpp/src/slice2py/.gitignore @@ -0,0 +1,4 @@ +// Generated by makegitignore.py + +// IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend diff --git a/cpp/test/Freeze/complex/.gitignore b/cpp/test/Freeze/complex/.gitignore index c1641d6cf02..f8cb9f16bc6 100644 --- a/cpp/test/Freeze/complex/.gitignore +++ b/cpp/test/Freeze/complex/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend Complex.cpp Complex.h ComplexDict.h diff --git a/cpp/test/Freeze/dbmap/.gitignore b/cpp/test/Freeze/dbmap/.gitignore index ba2bc3536f9..286d0606d2d 100644 --- a/cpp/test/Freeze/dbmap/.gitignore +++ b/cpp/test/Freeze/dbmap/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend ByteIntMap.h ByteIntMap.cpp IntIdentityMap.h diff --git a/cpp/test/Freeze/evictor/.gitignore b/cpp/test/Freeze/evictor/.gitignore index 5813c1223e3..827237c9887 100644 --- a/cpp/test/Freeze/evictor/.gitignore +++ b/cpp/test/Freeze/evictor/.gitignore @@ -1,8 +1,10 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Test.cpp Test.h db/__catalog diff --git a/cpp/test/Freeze/fileLock/.gitignore b/cpp/test/Freeze/fileLock/.gitignore index e58e5b6b798..7571cd220cf 100644 --- a/cpp/test/Freeze/fileLock/.gitignore +++ b/cpp/test/Freeze/fileLock/.gitignore @@ -1,6 +1,8 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client clientFail +.depend db/* diff --git a/cpp/test/FreezeScript/dbmap/.gitignore b/cpp/test/FreezeScript/dbmap/.gitignore index 2e986d77bf8..5388d8cbd40 100644 --- a/cpp/test/FreezeScript/dbmap/.gitignore +++ b/cpp/test/FreezeScript/dbmap/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend makedb +.depend TestOld.cpp TestOld.h IntSMap.h diff --git a/cpp/test/FreezeScript/evictor/.gitignore b/cpp/test/FreezeScript/evictor/.gitignore index 9ebd9157ec2..8d7d18ce80d 100644 --- a/cpp/test/FreezeScript/evictor/.gitignore +++ b/cpp/test/FreezeScript/evictor/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend makedb +.depend TestOld.cpp TestOld.h db/* diff --git a/cpp/test/Glacier2/attack/.gitignore b/cpp/test/Glacier2/attack/.gitignore index 9f1b6cf6e03..a0c8f4f0ab1 100644 --- a/cpp/test/Glacier2/attack/.gitignore +++ b/cpp/test/Glacier2/attack/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Backend.cpp Backend.h diff --git a/cpp/test/Glacier2/dynamicFiltering/.gitignore b/cpp/test/Glacier2/dynamicFiltering/.gitignore index 67872faa673..3a3aae35bd8 100644 --- a/cpp/test/Glacier2/dynamicFiltering/.gitignore +++ b/cpp/test/Glacier2/dynamicFiltering/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Test.cpp Test.h diff --git a/cpp/test/Glacier2/override/.gitignore b/cpp/test/Glacier2/override/.gitignore index 1cb01a674d1..64d5c068c33 100644 --- a/cpp/test/Glacier2/override/.gitignore +++ b/cpp/test/Glacier2/override/.gitignore @@ -3,5 +3,6 @@ // IMPORTANT: Do not edit this file -- any edits made here will be lost! client server +.depend Callback.cpp Callback.h diff --git a/cpp/test/Glacier2/router/.gitignore b/cpp/test/Glacier2/router/.gitignore index 1cb01a674d1..8671f03d5a1 100644 --- a/cpp/test/Glacier2/router/.gitignore +++ b/cpp/test/Glacier2/router/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Callback.cpp Callback.h diff --git a/cpp/test/Glacier2/sessionControl/.gitignore b/cpp/test/Glacier2/sessionControl/.gitignore index 2fa6de831ef..88130e8077a 100644 --- a/cpp/test/Glacier2/sessionControl/.gitignore +++ b/cpp/test/Glacier2/sessionControl/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Session.cpp Session.h diff --git a/cpp/test/Glacier2/sessionHelper/.gitignore b/cpp/test/Glacier2/sessionHelper/.gitignore index 1cb01a674d1..8671f03d5a1 100644 --- a/cpp/test/Glacier2/sessionHelper/.gitignore +++ b/cpp/test/Glacier2/sessionHelper/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Callback.cpp Callback.h diff --git a/cpp/test/Glacier2/ssl/.gitignore b/cpp/test/Glacier2/ssl/.gitignore index 30e8bfc4624..bc1dd55fba1 100644 --- a/cpp/test/Glacier2/ssl/.gitignore +++ b/cpp/test/Glacier2/ssl/.gitignore @@ -1,5 +1,7 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend diff --git a/cpp/test/Glacier2/staticFiltering/.gitignore b/cpp/test/Glacier2/staticFiltering/.gitignore index 4e792685e9d..6257255fb0a 100644 --- a/cpp/test/Glacier2/staticFiltering/.gitignore +++ b/cpp/test/Glacier2/staticFiltering/.gitignore @@ -1,8 +1,10 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Backend.cpp Backend.h attack.cfg diff --git a/cpp/test/Ice/acm/.gitignore b/cpp/test/Ice/acm/.gitignore index 67872faa673..3a3aae35bd8 100644 --- a/cpp/test/Ice/acm/.gitignore +++ b/cpp/test/Ice/acm/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/adapterDeactivation/.gitignore b/cpp/test/Ice/adapterDeactivation/.gitignore index d00d2864558..21c2eee2b29 100644 --- a/cpp/test/Ice/adapterDeactivation/.gitignore +++ b/cpp/test/Ice/adapterDeactivation/.gitignore @@ -1,8 +1,10 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server collocated +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/admin/.gitignore b/cpp/test/Ice/admin/.gitignore index 67872faa673..3a3aae35bd8 100644 --- a/cpp/test/Ice/admin/.gitignore +++ b/cpp/test/Ice/admin/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/ami/.gitignore b/cpp/test/Ice/ami/.gitignore index d00d2864558..21c2eee2b29 100644 --- a/cpp/test/Ice/ami/.gitignore +++ b/cpp/test/Ice/ami/.gitignore @@ -1,8 +1,10 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server collocated +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/background/.gitignore b/cpp/test/Ice/background/.gitignore index 3b65bea68f8..2c327f510eb 100644 --- a/cpp/test/Ice/background/.gitignore +++ b/cpp/test/Ice/background/.gitignore @@ -1,8 +1,10 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server libTestTransport.* +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/binding/.gitignore b/cpp/test/Ice/binding/.gitignore index 67872faa673..3a3aae35bd8 100644 --- a/cpp/test/Ice/binding/.gitignore +++ b/cpp/test/Ice/binding/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/checksum/.gitignore b/cpp/test/Ice/checksum/.gitignore index 02593a09c8e..a73cd1ba716 100644 --- a/cpp/test/Ice/checksum/.gitignore +++ b/cpp/test/Ice/checksum/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend Test.cpp Types.cpp Test.h diff --git a/cpp/test/Ice/checksum/server/.gitignore b/cpp/test/Ice/checksum/server/.gitignore index 4d88c2a958a..ac30cd19766 100644 --- a/cpp/test/Ice/checksum/server/.gitignore +++ b/cpp/test/Ice/checksum/server/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend server +.depend Test.cpp Types.cpp Test.h diff --git a/cpp/test/Ice/custom/.gitignore b/cpp/test/Ice/custom/.gitignore index 27da0899433..554110014d7 100644 --- a/cpp/test/Ice/custom/.gitignore +++ b/cpp/test/Ice/custom/.gitignore @@ -1,10 +1,12 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server serveramd collocated +.depend Test.cpp TestAMD.cpp Wstring.cpp diff --git a/cpp/test/Ice/defaultServant/.gitignore b/cpp/test/Ice/defaultServant/.gitignore index 505a9066685..dcdf5eb23c7 100644 --- a/cpp/test/Ice/defaultServant/.gitignore +++ b/cpp/test/Ice/defaultServant/.gitignore @@ -1,6 +1,8 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/defaultValue/.gitignore b/cpp/test/Ice/defaultValue/.gitignore index 505a9066685..dcdf5eb23c7 100644 --- a/cpp/test/Ice/defaultValue/.gitignore +++ b/cpp/test/Ice/defaultValue/.gitignore @@ -1,6 +1,8 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/dispatcher/.gitignore b/cpp/test/Ice/dispatcher/.gitignore index d00d2864558..21c2eee2b29 100644 --- a/cpp/test/Ice/dispatcher/.gitignore +++ b/cpp/test/Ice/dispatcher/.gitignore @@ -1,8 +1,10 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server collocated +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/echo/.gitignore b/cpp/test/Ice/echo/.gitignore index 208c208d34b..571c54bbb1f 100644 --- a/cpp/test/Ice/echo/.gitignore +++ b/cpp/test/Ice/echo/.gitignore @@ -1,6 +1,8 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend server +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/enums/.gitignore b/cpp/test/Ice/enums/.gitignore index 67872faa673..3a3aae35bd8 100644 --- a/cpp/test/Ice/enums/.gitignore +++ b/cpp/test/Ice/enums/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/exceptions/.gitignore b/cpp/test/Ice/exceptions/.gitignore index 86dc0d62846..725fdbfe47e 100644 --- a/cpp/test/Ice/exceptions/.gitignore +++ b/cpp/test/Ice/exceptions/.gitignore @@ -1,10 +1,12 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server serveramd collocated +.depend Test.cpp TestAMD.cpp Test.h diff --git a/cpp/test/Ice/facets/.gitignore b/cpp/test/Ice/facets/.gitignore index d00d2864558..21c2eee2b29 100644 --- a/cpp/test/Ice/facets/.gitignore +++ b/cpp/test/Ice/facets/.gitignore @@ -1,8 +1,10 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server collocated +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/faultTolerance/.gitignore b/cpp/test/Ice/faultTolerance/.gitignore index 67872faa673..3a3aae35bd8 100644 --- a/cpp/test/Ice/faultTolerance/.gitignore +++ b/cpp/test/Ice/faultTolerance/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/gc/.gitignore b/cpp/test/Ice/gc/.gitignore index 4270746d238..dcdf5eb23c7 100644 --- a/cpp/test/Ice/gc/.gitignore +++ b/cpp/test/Ice/gc/.gitignore @@ -1,7 +1,8 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend Test.cpp Test.h -seed diff --git a/cpp/test/Ice/hash/.gitignore b/cpp/test/Ice/hash/.gitignore index 505a9066685..dcdf5eb23c7 100644 --- a/cpp/test/Ice/hash/.gitignore +++ b/cpp/test/Ice/hash/.gitignore @@ -1,6 +1,8 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/hold/.gitignore b/cpp/test/Ice/hold/.gitignore index 67872faa673..3a3aae35bd8 100644 --- a/cpp/test/Ice/hold/.gitignore +++ b/cpp/test/Ice/hold/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/info/.gitignore b/cpp/test/Ice/info/.gitignore index 67872faa673..3a3aae35bd8 100644 --- a/cpp/test/Ice/info/.gitignore +++ b/cpp/test/Ice/info/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/inheritance/.gitignore b/cpp/test/Ice/inheritance/.gitignore index d00d2864558..21c2eee2b29 100644 --- a/cpp/test/Ice/inheritance/.gitignore +++ b/cpp/test/Ice/inheritance/.gitignore @@ -1,8 +1,10 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server collocated +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/interceptor/.gitignore b/cpp/test/Ice/interceptor/.gitignore index 505a9066685..dcdf5eb23c7 100644 --- a/cpp/test/Ice/interceptor/.gitignore +++ b/cpp/test/Ice/interceptor/.gitignore @@ -1,6 +1,8 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/invoke/.gitignore b/cpp/test/Ice/invoke/.gitignore index 67872faa673..2ec67c2a17c 100644 --- a/cpp/test/Ice/invoke/.gitignore +++ b/cpp/test/Ice/invoke/.gitignore @@ -3,5 +3,6 @@ // IMPORTANT: Do not edit this file -- any edits made here will be lost! client server +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/location/.gitignore b/cpp/test/Ice/location/.gitignore index 67872faa673..3a3aae35bd8 100644 --- a/cpp/test/Ice/location/.gitignore +++ b/cpp/test/Ice/location/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/logger/.gitignore b/cpp/test/Ice/logger/.gitignore index a3840a0dcdf..a918a882f43 100644 --- a/cpp/test/Ice/logger/.gitignore +++ b/cpp/test/Ice/logger/.gitignore @@ -1,8 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client1 client2 client3 client4 -seed +.depend diff --git a/cpp/test/Ice/metrics/.gitignore b/cpp/test/Ice/metrics/.gitignore index 86dc0d62846..725fdbfe47e 100644 --- a/cpp/test/Ice/metrics/.gitignore +++ b/cpp/test/Ice/metrics/.gitignore @@ -1,10 +1,12 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server serveramd collocated +.depend Test.cpp TestAMD.cpp Test.h diff --git a/cpp/test/Ice/networkProxy/.gitignore b/cpp/test/Ice/networkProxy/.gitignore index 67872faa673..3a3aae35bd8 100644 --- a/cpp/test/Ice/networkProxy/.gitignore +++ b/cpp/test/Ice/networkProxy/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/objects/.gitignore b/cpp/test/Ice/objects/.gitignore index d00d2864558..45895860e8d 100644 --- a/cpp/test/Ice/objects/.gitignore +++ b/cpp/test/Ice/objects/.gitignore @@ -1,8 +1,14 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server collocated +.depend Test.cpp +Derived.cpp +DerivedEx.cpp Test.h +Derived.h +DerivedEx.h diff --git a/cpp/test/Ice/operations/.gitignore b/cpp/test/Ice/operations/.gitignore index 86dc0d62846..725fdbfe47e 100644 --- a/cpp/test/Ice/operations/.gitignore +++ b/cpp/test/Ice/operations/.gitignore @@ -1,10 +1,12 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server serveramd collocated +.depend Test.cpp TestAMD.cpp Test.h diff --git a/cpp/test/Ice/optional/.gitignore b/cpp/test/Ice/optional/.gitignore index f6ac51a4607..f1f62485ccb 100644 --- a/cpp/test/Ice/optional/.gitignore +++ b/cpp/test/Ice/optional/.gitignore @@ -1,10 +1,12 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server serveramd +.depend Test.cpp -Test.h TestAMD.cpp +Test.h TestAMD.h diff --git a/cpp/test/Ice/plugin/.gitignore b/cpp/test/Ice/plugin/.gitignore index 2b0c67f9d75..acda1ecf37a 100644 --- a/cpp/test/Ice/plugin/.gitignore +++ b/cpp/test/Ice/plugin/.gitignore @@ -1,5 +1,7 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client plugins/libTestPlugin.* +.depend diff --git a/cpp/test/Ice/properties/.gitignore b/cpp/test/Ice/properties/.gitignore index 9f5181ae1f1..f715a76859d 100644 --- a/cpp/test/Ice/properties/.gitignore +++ b/cpp/test/Ice/properties/.gitignore @@ -1,5 +1,6 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client -seed +.depend diff --git a/cpp/test/Ice/proxy/.gitignore b/cpp/test/Ice/proxy/.gitignore index 86dc0d62846..725fdbfe47e 100644 --- a/cpp/test/Ice/proxy/.gitignore +++ b/cpp/test/Ice/proxy/.gitignore @@ -1,10 +1,12 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server serveramd collocated +.depend Test.cpp TestAMD.cpp Test.h diff --git a/cpp/test/Ice/retry/.gitignore b/cpp/test/Ice/retry/.gitignore index d00d2864558..21c2eee2b29 100644 --- a/cpp/test/Ice/retry/.gitignore +++ b/cpp/test/Ice/retry/.gitignore @@ -1,8 +1,10 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server collocated +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/servantLocator/.gitignore b/cpp/test/Ice/servantLocator/.gitignore index 86dc0d62846..725fdbfe47e 100644 --- a/cpp/test/Ice/servantLocator/.gitignore +++ b/cpp/test/Ice/servantLocator/.gitignore @@ -1,10 +1,12 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server serveramd collocated +.depend Test.cpp TestAMD.cpp Test.h diff --git a/cpp/test/Ice/services/.gitignore b/cpp/test/Ice/services/.gitignore index 505a9066685..dcdf5eb23c7 100644 --- a/cpp/test/Ice/services/.gitignore +++ b/cpp/test/Ice/services/.gitignore @@ -1,6 +1,8 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/slicing/exceptions/.gitignore b/cpp/test/Ice/slicing/exceptions/.gitignore index ed8bb406a1e..756a3f6161a 100644 --- a/cpp/test/Ice/slicing/exceptions/.gitignore +++ b/cpp/test/Ice/slicing/exceptions/.gitignore @@ -1,9 +1,11 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server serveramd +.depend Test.cpp TestAMD.cpp ClientPrivate.cpp diff --git a/cpp/test/Ice/slicing/objects/.gitignore b/cpp/test/Ice/slicing/objects/.gitignore index cea91f33071..899ee01ff92 100644 --- a/cpp/test/Ice/slicing/objects/.gitignore +++ b/cpp/test/Ice/slicing/objects/.gitignore @@ -1,9 +1,11 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server serveramd +.depend Test.cpp TestAMD.cpp ClientPrivate.cpp diff --git a/cpp/test/Ice/stream/.gitignore b/cpp/test/Ice/stream/.gitignore index 505a9066685..dcdf5eb23c7 100644 --- a/cpp/test/Ice/stream/.gitignore +++ b/cpp/test/Ice/stream/.gitignore @@ -1,6 +1,8 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/stringConverter/.gitignore b/cpp/test/Ice/stringConverter/.gitignore index 67872faa673..3a3aae35bd8 100644 --- a/cpp/test/Ice/stringConverter/.gitignore +++ b/cpp/test/Ice/stringConverter/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/threadPoolPriority/.gitignore b/cpp/test/Ice/threadPoolPriority/.gitignore index a5ba5646b8e..ae1078237e7 100644 --- a/cpp/test/Ice/threadPoolPriority/.gitignore +++ b/cpp/test/Ice/threadPoolPriority/.gitignore @@ -1,8 +1,10 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server servercustom +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/timeout/.gitignore b/cpp/test/Ice/timeout/.gitignore index 67872faa673..3a3aae35bd8 100644 --- a/cpp/test/Ice/timeout/.gitignore +++ b/cpp/test/Ice/timeout/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Test.cpp Test.h diff --git a/cpp/test/Ice/udp/.gitignore b/cpp/test/Ice/udp/.gitignore index 67872faa673..3a3aae35bd8 100644 --- a/cpp/test/Ice/udp/.gitignore +++ b/cpp/test/Ice/udp/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Test.cpp Test.h diff --git a/cpp/test/IceBox/admin/.gitignore b/cpp/test/IceBox/admin/.gitignore index 881ee03f814..03484b5178b 100644 --- a/cpp/test/IceBox/admin/.gitignore +++ b/cpp/test/IceBox/admin/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client libTestService.* +.depend Test.cpp Test.h diff --git a/cpp/test/IceBox/configuration/.gitignore b/cpp/test/IceBox/configuration/.gitignore index 881ee03f814..03484b5178b 100644 --- a/cpp/test/IceBox/configuration/.gitignore +++ b/cpp/test/IceBox/configuration/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client libTestService.* +.depend Test.cpp Test.h diff --git a/cpp/test/IceDiscovery/simple/.gitignore b/cpp/test/IceDiscovery/simple/.gitignore index 67872faa673..3a3aae35bd8 100644 --- a/cpp/test/IceDiscovery/simple/.gitignore +++ b/cpp/test/IceDiscovery/simple/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Test.cpp Test.h diff --git a/cpp/test/IceGrid/activation/.gitignore b/cpp/test/IceGrid/activation/.gitignore index 6236c515c56..1593c12731f 100644 --- a/cpp/test/IceGrid/activation/.gitignore +++ b/cpp/test/IceGrid/activation/.gitignore @@ -1,8 +1,10 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Test.cpp Test.h db/node diff --git a/cpp/test/IceGrid/admin/.gitignore b/cpp/test/IceGrid/admin/.gitignore index 43b93111bf8..6d52720534e 100644 --- a/cpp/test/IceGrid/admin/.gitignore +++ b/cpp/test/IceGrid/admin/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend server +.depend db/node db/registry db/replica-* diff --git a/cpp/test/IceGrid/allocation/.gitignore b/cpp/test/IceGrid/allocation/.gitignore index 819e86ad169..b38ad0a165c 100644 --- a/cpp/test/IceGrid/allocation/.gitignore +++ b/cpp/test/IceGrid/allocation/.gitignore @@ -1,9 +1,11 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server verifier +.depend Test.cpp Test.h db/node diff --git a/cpp/test/IceGrid/deployer/.gitignore b/cpp/test/IceGrid/deployer/.gitignore index 7f02284cfee..acaef95b2cd 100644 --- a/cpp/test/IceGrid/deployer/.gitignore +++ b/cpp/test/IceGrid/deployer/.gitignore @@ -1,9 +1,11 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server libTestService.* +.depend Test.cpp Test.h build.txt diff --git a/cpp/test/IceGrid/distribution/.gitignore b/cpp/test/IceGrid/distribution/.gitignore index 43222375494..77c4fb4d540 100644 --- a/cpp/test/IceGrid/distribution/.gitignore +++ b/cpp/test/IceGrid/distribution/.gitignore @@ -1,8 +1,10 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Test.cpp Test.h db/node diff --git a/cpp/test/IceGrid/noRestartUpdate/.gitignore b/cpp/test/IceGrid/noRestartUpdate/.gitignore index d12de56b4ca..1a26f311e2a 100644 --- a/cpp/test/IceGrid/noRestartUpdate/.gitignore +++ b/cpp/test/IceGrid/noRestartUpdate/.gitignore @@ -1,9 +1,11 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server libTestService.* +.depend Test.cpp Test.h db/node diff --git a/cpp/test/IceGrid/replicaGroup/.gitignore b/cpp/test/IceGrid/replicaGroup/.gitignore index 6c64605ce39..18519db5234 100644 --- a/cpp/test/IceGrid/replicaGroup/.gitignore +++ b/cpp/test/IceGrid/replicaGroup/.gitignore @@ -1,9 +1,11 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server libTestService.* +.depend Test.cpp Test.h build.txt diff --git a/cpp/test/IceGrid/replication/.gitignore b/cpp/test/IceGrid/replication/.gitignore index 06dd9d3bfba..a2fb0ecc07c 100644 --- a/cpp/test/IceGrid/replication/.gitignore +++ b/cpp/test/IceGrid/replication/.gitignore @@ -1,8 +1,10 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Test.cpp Test.h build.txt diff --git a/cpp/test/IceGrid/session/.gitignore b/cpp/test/IceGrid/session/.gitignore index 41397371fa5..c975494fe1e 100644 --- a/cpp/test/IceGrid/session/.gitignore +++ b/cpp/test/IceGrid/session/.gitignore @@ -1,9 +1,11 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server verifier +.depend Test.cpp Test.h db/node diff --git a/cpp/test/IceGrid/simple/.gitignore b/cpp/test/IceGrid/simple/.gitignore index 6236c515c56..1593c12731f 100644 --- a/cpp/test/IceGrid/simple/.gitignore +++ b/cpp/test/IceGrid/simple/.gitignore @@ -1,8 +1,10 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Test.cpp Test.h db/node diff --git a/cpp/test/IceGrid/update/.gitignore b/cpp/test/IceGrid/update/.gitignore index 43222375494..77c4fb4d540 100644 --- a/cpp/test/IceGrid/update/.gitignore +++ b/cpp/test/IceGrid/update/.gitignore @@ -1,8 +1,10 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Test.cpp Test.h db/node diff --git a/cpp/test/IceSSL/configuration/.gitignore b/cpp/test/IceSSL/configuration/.gitignore index 67872faa673..3a3aae35bd8 100644 --- a/cpp/test/IceSSL/configuration/.gitignore +++ b/cpp/test/IceSSL/configuration/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client server +.depend Test.cpp Test.h diff --git a/cpp/test/IceStorm/federation/.gitignore b/cpp/test/IceStorm/federation/.gitignore index f6811ab9123..9f3e354edb6 100644 --- a/cpp/test/IceStorm/federation/.gitignore +++ b/cpp/test/IceStorm/federation/.gitignore @@ -1,8 +1,10 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend publisher subscriber +.depend Event.cpp Event.h build.txt diff --git a/cpp/test/IceStorm/federation2/.gitignore b/cpp/test/IceStorm/federation2/.gitignore index 1e15a552882..1ee63744e74 100644 --- a/cpp/test/IceStorm/federation2/.gitignore +++ b/cpp/test/IceStorm/federation2/.gitignore @@ -1,8 +1,10 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend publisher subscriber +.depend Event.cpp Event.h build.txt diff --git a/cpp/test/IceStorm/rep1/.gitignore b/cpp/test/IceStorm/rep1/.gitignore index a6eaee14920..9cd9b7ec547 100644 --- a/cpp/test/IceStorm/rep1/.gitignore +++ b/cpp/test/IceStorm/rep1/.gitignore @@ -1,9 +1,11 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend publisher subscriber sub +.depend Single.cpp Single.h build.txt diff --git a/cpp/test/IceStorm/repgrid/.gitignore b/cpp/test/IceStorm/repgrid/.gitignore index 34ee77907e3..6c0d77be0e0 100644 --- a/cpp/test/IceStorm/repgrid/.gitignore +++ b/cpp/test/IceStorm/repgrid/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend Single.cpp Single.h build.txt diff --git a/cpp/test/IceStorm/repstress/.gitignore b/cpp/test/IceStorm/repstress/.gitignore index 3326cff4756..c1e2c6ba18a 100644 --- a/cpp/test/IceStorm/repstress/.gitignore +++ b/cpp/test/IceStorm/repstress/.gitignore @@ -1,9 +1,11 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend publisher subscriber control +.depend Single.cpp Controller.cpp Single.h diff --git a/cpp/test/IceStorm/single/.gitignore b/cpp/test/IceStorm/single/.gitignore index 9d7c0709185..7245563774f 100644 --- a/cpp/test/IceStorm/single/.gitignore +++ b/cpp/test/IceStorm/single/.gitignore @@ -1,8 +1,10 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend publisher subscriber +.depend Single.cpp Single.h build.txt diff --git a/cpp/test/IceStorm/stress/.gitignore b/cpp/test/IceStorm/stress/.gitignore index 1e15a552882..1ee63744e74 100644 --- a/cpp/test/IceStorm/stress/.gitignore +++ b/cpp/test/IceStorm/stress/.gitignore @@ -1,8 +1,10 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend publisher subscriber +.depend Event.cpp Event.h build.txt diff --git a/cpp/test/IceUtil/condvar/.gitignore b/cpp/test/IceUtil/condvar/.gitignore index 9feff7712b2..4498983a9de 100644 --- a/cpp/test/IceUtil/condvar/.gitignore +++ b/cpp/test/IceUtil/condvar/.gitignore @@ -1,5 +1,7 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend workqueue match +.depend diff --git a/cpp/test/IceUtil/ctrlCHandler/.gitignore b/cpp/test/IceUtil/ctrlCHandler/.gitignore index 1446b6586f5..f715a76859d 100644 --- a/cpp/test/IceUtil/ctrlCHandler/.gitignore +++ b/cpp/test/IceUtil/ctrlCHandler/.gitignore @@ -1,4 +1,6 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend diff --git a/cpp/test/IceUtil/inputUtil/.gitignore b/cpp/test/IceUtil/inputUtil/.gitignore index 1446b6586f5..f715a76859d 100644 --- a/cpp/test/IceUtil/inputUtil/.gitignore +++ b/cpp/test/IceUtil/inputUtil/.gitignore @@ -1,4 +1,6 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend diff --git a/cpp/test/IceUtil/priority/.gitignore b/cpp/test/IceUtil/priority/.gitignore index 1446b6586f5..f715a76859d 100644 --- a/cpp/test/IceUtil/priority/.gitignore +++ b/cpp/test/IceUtil/priority/.gitignore @@ -1,4 +1,6 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend diff --git a/cpp/test/IceUtil/sha1/.gitignore b/cpp/test/IceUtil/sha1/.gitignore index 1446b6586f5..f715a76859d 100644 --- a/cpp/test/IceUtil/sha1/.gitignore +++ b/cpp/test/IceUtil/sha1/.gitignore @@ -1,4 +1,6 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend diff --git a/cpp/test/IceUtil/stacktrace/.gitignore b/cpp/test/IceUtil/stacktrace/.gitignore index 1446b6586f5..f715a76859d 100644 --- a/cpp/test/IceUtil/stacktrace/.gitignore +++ b/cpp/test/IceUtil/stacktrace/.gitignore @@ -1,4 +1,6 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend diff --git a/cpp/test/IceUtil/thread/.gitignore b/cpp/test/IceUtil/thread/.gitignore index 1446b6586f5..f715a76859d 100644 --- a/cpp/test/IceUtil/thread/.gitignore +++ b/cpp/test/IceUtil/thread/.gitignore @@ -1,4 +1,6 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend diff --git a/cpp/test/IceUtil/timer/.gitignore b/cpp/test/IceUtil/timer/.gitignore index 1446b6586f5..f715a76859d 100644 --- a/cpp/test/IceUtil/timer/.gitignore +++ b/cpp/test/IceUtil/timer/.gitignore @@ -1,4 +1,6 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend diff --git a/cpp/test/IceUtil/unicode/.gitignore b/cpp/test/IceUtil/unicode/.gitignore index 1446b6586f5..f715a76859d 100644 --- a/cpp/test/IceUtil/unicode/.gitignore +++ b/cpp/test/IceUtil/unicode/.gitignore @@ -1,4 +1,6 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend diff --git a/cpp/test/IceUtil/uuid/.gitignore b/cpp/test/IceUtil/uuid/.gitignore index 1446b6586f5..f715a76859d 100644 --- a/cpp/test/IceUtil/uuid/.gitignore +++ b/cpp/test/IceUtil/uuid/.gitignore @@ -1,4 +1,6 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend diff --git a/cpp/test/Slice/keyword/.gitignore b/cpp/test/Slice/keyword/.gitignore index 0e03bd06e7e..b6ac5c9979a 100644 --- a/cpp/test/Slice/keyword/.gitignore +++ b/cpp/test/Slice/keyword/.gitignore @@ -1,6 +1,8 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend Key.cpp Key.h diff --git a/cpp/test/Slice/macros/.gitignore b/cpp/test/Slice/macros/.gitignore index 505a9066685..dcdf5eb23c7 100644 --- a/cpp/test/Slice/macros/.gitignore +++ b/cpp/test/Slice/macros/.gitignore @@ -1,6 +1,8 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend Test.cpp Test.h diff --git a/cpp/test/Slice/parser/.gitignore b/cpp/test/Slice/parser/.gitignore index 7732d7c018e..9fb83203e46 100644 --- a/cpp/test/Slice/parser/.gitignore +++ b/cpp/test/Slice/parser/.gitignore @@ -1,8 +1,10 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend CircularA.o CircularB.o +.depend CircularA.cpp CircularB.cpp CircularA.h diff --git a/cpp/test/Slice/structure/.gitignore b/cpp/test/Slice/structure/.gitignore index aec891a666e..c837849dc6b 100644 --- a/cpp/test/Slice/structure/.gitignore +++ b/cpp/test/Slice/structure/.gitignore @@ -1,7 +1,9 @@ // Generated by makegitignore.py // IMPORTANT: Do not edit this file -- any edits made here will be lost! +.depend client +.depend Test.cpp Forward.cpp Test.h diff --git a/cpp/test/Slice/utf8BOM/.gitignore b/cpp/test/Slice/utf8BOM/.gitignore index 067afe32e86..446425aa735 100644 --- a/cpp/test/Slice/utf8BOM/.gitignore +++ b/cpp/test/Slice/utf8BOM/.gitignore @@ -2,5 +2,6 @@ // IMPORTANT: Do not edit this file -- any edits made here will be lost! Test.o +.depend Test.cpp Test.h |