ttk 0.1.576
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/AUTHORS +32 -0
- data/COPYING +18 -0
- data/ChangeLog +4629 -0
- data/DATE +1 -0
- data/DESCRIPTION +8 -0
- data/GUIDELINES +84 -0
- data/LGPL +504 -0
- data/NEWS +69 -0
- data/NORM +85 -0
- data/README +206 -0
- data/REVISION +1 -0
- data/Rakefile +120 -0
- data/TODO +23 -0
- data/TODO.old +115 -0
- data/VERSION +5 -0
- data/bin/getopts/ttk.rb +394 -0
- data/bin/getopts/ttkd.rb +150 -0
- data/bin/getopts/ttkm.rb +71 -0
- data/bin/ttk +170 -0
- data/bin/ttkd +73 -0
- data/bin/ttkm +54 -0
- data/doc/html/classes/IO/CutInput.html +159 -0
- data/doc/html/classes/IO/Delegator.html +291 -0
- data/doc/html/classes/IO/Dispatch.html +204 -0
- data/doc/html/classes/IO/Ext.html +118 -0
- data/doc/html/classes/IO/ImplExt.html +149 -0
- data/doc/html/classes/IO/ImplIndent.html +175 -0
- data/doc/html/classes/IO/ImplPrintFile.html +142 -0
- data/doc/html/classes/IO/ImplPrintIO.html +143 -0
- data/doc/html/classes/IO/InputFilter.html +347 -0
- data/doc/html/classes/IO/OutputFilter.html +298 -0
- data/doc/html/classes/NilClass.html +198 -0
- data/doc/html/classes/SafeEval.html +277 -0
- data/doc/html/classes/String.html +245 -0
- data/doc/html/classes/SymTbl.html +146 -0
- data/doc/html/classes/TTK.html +658 -0
- data/doc/html/classes/TTK/AbortStatus.html +211 -0
- data/doc/html/classes/TTK/Daemons.html +142 -0
- data/doc/html/classes/TTK/Daemons/Daemon.html +170 -0
- data/doc/html/classes/TTK/Daemons/Daemon/Logger.html +192 -0
- data/doc/html/classes/TTK/Daemons/Master.html +163 -0
- data/doc/html/classes/TTK/Daemons/Slave.html +158 -0
- data/doc/html/classes/TTK/Dumpers.html +150 -0
- data/doc/html/classes/TTK/Dumpers/Dumper.html +461 -0
- data/doc/html/classes/TTK/Dumpers/Notif.html +208 -0
- data/doc/html/classes/TTK/Dumpers/Xml.html +260 -0
- data/doc/html/classes/TTK/Dumpers/Yaml.html +307 -0
- data/doc/html/classes/TTK/ErrorStatus.html +133 -0
- data/doc/html/classes/TTK/FailStatus.html +195 -0
- data/doc/html/classes/TTK/Fetchers.html +135 -0
- data/doc/html/classes/TTK/Fetchers/Client.html +229 -0
- data/doc/html/classes/TTK/Fetchers/Client/Receiver.html +254 -0
- data/doc/html/classes/TTK/Fetchers/Server.html +256 -0
- data/doc/html/classes/TTK/Fetchers/Server/Sender.html +241 -0
- data/doc/html/classes/TTK/Filters.html +142 -0
- data/doc/html/classes/TTK/Filters/BasicLogger.html +187 -0
- data/doc/html/classes/TTK/Filters/Filter.html +188 -0
- data/doc/html/classes/TTK/Filters/Saver.html +279 -0
- data/doc/html/classes/TTK/Loaders.html +115 -0
- data/doc/html/classes/TTK/Loaders/BaseNode.html +224 -0
- data/doc/html/classes/TTK/Loaders/Loader.html +242 -0
- data/doc/html/classes/TTK/Loaders/OYaml.html +161 -0
- data/doc/html/classes/TTK/Loaders/Yaml.html +157 -0
- data/doc/html/classes/TTK/Loaders/YamlOld.html +155 -0
- data/doc/html/classes/TTK/Logger.html +836 -0
- data/doc/html/classes/TTK/Logger/Path.html +161 -0
- data/doc/html/classes/TTK/Logger/SectionNode.html +925 -0
- data/doc/html/classes/TTK/Logger/Severity.html +306 -0
- data/doc/html/classes/TTK/Logger/ToTTKLog.html +119 -0
- data/doc/html/classes/TTK/Logger/Verbosity.html +278 -0
- data/doc/html/classes/TTK/LoggerFactory.html +204 -0
- data/doc/html/classes/TTK/Monitors.html +132 -0
- data/doc/html/classes/TTK/Monitors/Client.html +261 -0
- data/doc/html/classes/TTK/Monitors/Monitor.html +209 -0
- data/doc/html/classes/TTK/Monitors/Server.html +288 -0
- data/doc/html/classes/TTK/Monitors/Server/Notification.html +118 -0
- data/doc/html/classes/TTK/Monitors/Server/Notifier.html +118 -0
- data/doc/html/classes/TTK/PassStatus.html +168 -0
- data/doc/html/classes/TTK/RunningStatus.html +133 -0
- data/doc/html/classes/TTK/Services.html +161 -0
- data/doc/html/classes/TTK/Services/DRbService.html +217 -0
- data/doc/html/classes/TTK/Services/DRbService/Notification.html +123 -0
- data/doc/html/classes/TTK/Services/DRbService/SubTestable.html +197 -0
- data/doc/html/classes/TTK/Services/FetcherClient.html +190 -0
- data/doc/html/classes/TTK/Services/FetcherServer.html +149 -0
- data/doc/html/classes/TTK/Services/MonitorClient.html +190 -0
- data/doc/html/classes/TTK/Services/MonitorServer.html +149 -0
- data/doc/html/classes/TTK/Services/TesterClient.html +207 -0
- data/doc/html/classes/TTK/Services/TesterMaster.html +193 -0
- data/doc/html/classes/TTK/Services/TesterMaster/Notification.html +123 -0
- data/doc/html/classes/TTK/Services/TesterSlave.html +157 -0
- data/doc/html/classes/TTK/Services/TesterSlave/Notification.html +118 -0
- data/doc/html/classes/TTK/SkipStatus.html +169 -0
- data/doc/html/classes/TTK/StartStatus.html +133 -0
- data/doc/html/classes/TTK/Status.html +373 -0
- data/doc/html/classes/TTK/StatusException.html +161 -0
- data/doc/html/classes/TTK/StatusWithMessage.html +220 -0
- data/doc/html/classes/TTK/Strategies.html +356 -0
- data/doc/html/classes/TTK/Strategies/Abort.html +161 -0
- data/doc/html/classes/TTK/Strategies/Authors.html +170 -0
- data/doc/html/classes/TTK/Strategies/Ball.html +200 -0
- data/doc/html/classes/TTK/Strategies/Block.html +230 -0
- data/doc/html/classes/TTK/Strategies/Bootstrap.html +238 -0
- data/doc/html/classes/TTK/Strategies/Checkout.html +201 -0
- data/doc/html/classes/TTK/Strategies/Clean.html +160 -0
- data/doc/html/classes/TTK/Strategies/Cmd.html +218 -0
- data/doc/html/classes/TTK/Strategies/CmdBase.html +312 -0
- data/doc/html/classes/TTK/Strategies/Collection.html +282 -0
- data/doc/html/classes/TTK/Strategies/Compile.html +199 -0
- data/doc/html/classes/TTK/Strategies/Composite.html +541 -0
- data/doc/html/classes/TTK/Strategies/Composite/Ordered.html +183 -0
- data/doc/html/classes/TTK/Strategies/Configure.html +270 -0
- data/doc/html/classes/TTK/Strategies/DistDelegate.html +192 -0
- data/doc/html/classes/TTK/Strategies/DistDuplicate.html +221 -0
- data/doc/html/classes/TTK/Strategies/DistStrategy.html +224 -0
- data/doc/html/classes/TTK/Strategies/Distribute.html +163 -0
- data/doc/html/classes/TTK/Strategies/Error.html +161 -0
- data/doc/html/classes/TTK/Strategies/Extract.html +179 -0
- data/doc/html/classes/TTK/Strategies/Fail.html +161 -0
- data/doc/html/classes/TTK/Strategies/Fetch.html +400 -0
- data/doc/html/classes/TTK/Strategies/Fetcher.html +276 -0
- data/doc/html/classes/TTK/Strategies/Glob.html +201 -0
- data/doc/html/classes/TTK/Strategies/IOBased.html +400 -0
- data/doc/html/classes/TTK/Strategies/Import.html +215 -0
- data/doc/html/classes/TTK/Strategies/JUnit.html +623 -0
- data/doc/html/classes/TTK/Strategies/KillAll.html +249 -0
- data/doc/html/classes/TTK/Strategies/Make.html +235 -0
- data/doc/html/classes/TTK/Strategies/Make/All.html +120 -0
- data/doc/html/classes/TTK/Strategies/Make/Check.html +120 -0
- data/doc/html/classes/TTK/Strategies/Make/Default.html +155 -0
- data/doc/html/classes/TTK/Strategies/Make/DistCheck.html +120 -0
- data/doc/html/classes/TTK/Strategies/Make/Install.html +120 -0
- data/doc/html/classes/TTK/Strategies/Make/Target.html +179 -0
- data/doc/html/classes/TTK/Strategies/Package.html +271 -0
- data/doc/html/classes/TTK/Strategies/PackageCollection.html +168 -0
- data/doc/html/classes/TTK/Strategies/Pass.html +161 -0
- data/doc/html/classes/TTK/Strategies/Pool.html +306 -0
- data/doc/html/classes/TTK/Strategies/Pool/PoolComponent.html +139 -0
- data/doc/html/classes/TTK/Strategies/ProbabilityThreshold.html +187 -0
- data/doc/html/classes/TTK/Strategies/Proxy.html +211 -0
- data/doc/html/classes/TTK/Strategies/RUnit.html +355 -0
- data/doc/html/classes/TTK/Strategies/RemoteCmd.html +213 -0
- data/doc/html/classes/TTK/Strategies/SignalCmd.html +269 -0
- data/doc/html/classes/TTK/Strategies/Sleep.html +193 -0
- data/doc/html/classes/TTK/Strategies/SqlQuery.html +248 -0
- data/doc/html/classes/TTK/Strategies/Strategy.html +2847 -0
- data/doc/html/classes/TTK/Strategies/Strategy/AssertEval.html +233 -0
- data/doc/html/classes/TTK/Strategies/Strategy/AttributedClass.html +107 -0
- data/doc/html/classes/TTK/Strategies/Strategy/AttributedClass/Attribute.html +246 -0
- data/doc/html/classes/TTK/Strategies/Strategy/Failure.html +121 -0
- data/doc/html/classes/TTK/Strategies/Stub.html +179 -0
- data/doc/html/classes/TTK/Strategies/SubCmd.html +243 -0
- data/doc/html/classes/TTK/Strategies/Suite.html +182 -0
- data/doc/html/classes/TTK/Strategies/Test.html +310 -0
- data/doc/html/classes/TTK/Strategies/Tester.html +218 -0
- data/doc/html/classes/TTK/Streams.html +116 -0
- data/doc/html/classes/TTK/Streams/Diff.html +148 -0
- data/doc/html/classes/TTK/Streams/Stream.html +295 -0
- data/doc/html/classes/TTK/SymTbl.html +266 -0
- data/doc/html/classes/TTK/TTKException.html +118 -0
- data/doc/html/classes/TTK/TTKModule.html +145 -0
- data/doc/html/classes/TTK/Testers.html +156 -0
- data/doc/html/classes/TTK/Testers/Master.html +304 -0
- data/doc/html/classes/TTK/Testers/Slave.html +120 -0
- data/doc/html/classes/TTK/Testers/Tester.html +547 -0
- data/doc/html/classes/TTK/Testers/Tester/Config.html +310 -0
- data/doc/html/classes/TTK/Testers/Tester/Notification.html +123 -0
- data/doc/html/classes/TTK/Testers/Tester/Notifier.html +118 -0
- data/doc/html/classes/TTK/Testers/Tester/QueryNode.html +341 -0
- data/doc/html/classes/TTK/Testers/Tester/RemoteStatus.html +165 -0
- data/doc/html/classes/TTK/Testers/Tester/RunningTask.html +262 -0
- data/doc/html/classes/TTK/Testers/Tester/Score.html +198 -0
- data/doc/html/classes/TTK/TimeoutAbortStatus.html +161 -0
- data/doc/html/classes/TTK/Tools.html +111 -0
- data/doc/html/classes/TTK/Tools/HostDispatcher.html +246 -0
- data/doc/html/classes/TTK/Weights.html +160 -0
- data/doc/html/classes/TTK/Weights/WExpr.html +326 -0
- data/doc/html/classes/TTK/Weights/WFloat.html +149 -0
- data/doc/html/classes/TTK/Weights/WMin.html +148 -0
- data/doc/html/classes/TTK/Weights/Weight.html +624 -0
- data/doc/html/created.rid +1 -0
- data/doc/html/files/AUTHORS.html +198 -0
- data/doc/html/files/NEWS.html +236 -0
- data/doc/html/files/README.html +435 -0
- data/doc/html/files/TODO.html +128 -0
- data/doc/html/files/lib/ttk/Tools/HostDispatcher_rb.html +126 -0
- data/doc/html/files/lib/ttk/Tools/SafeEval_rb.html +119 -0
- data/doc/html/files/lib/ttk/Tools/cut_output_rb.html +126 -0
- data/doc/html/files/lib/ttk/Tools/io/delegator_rb.html +127 -0
- data/doc/html/files/lib/ttk/Tools/io/dispatch_rb.html +127 -0
- data/doc/html/files/lib/ttk/Tools/io/ext_rb.html +126 -0
- data/doc/html/files/lib/ttk/Tools/io/filters_rb.html +127 -0
- data/doc/html/files/lib/ttk/daemons/Daemon_rb.html +126 -0
- data/doc/html/files/lib/ttk/daemons/Master_rb.html +119 -0
- data/doc/html/files/lib/ttk/daemons/Slave_rb.html +119 -0
- data/doc/html/files/lib/ttk/daemons/daemon/logger_rb.html +126 -0
- data/doc/html/files/lib/ttk/dumpers/Dumper_rb.html +119 -0
- data/doc/html/files/lib/ttk/dumpers/Notif_rb.html +119 -0
- data/doc/html/files/lib/ttk/dumpers/Xml_rb.html +126 -0
- data/doc/html/files/lib/ttk/dumpers/Yaml_rb.html +119 -0
- data/doc/html/files/lib/ttk/fetchers/Client_rb.html +126 -0
- data/doc/html/files/lib/ttk/fetchers/Server_rb.html +126 -0
- data/doc/html/files/lib/ttk/fetchers/client/receiver_rb.html +127 -0
- data/doc/html/files/lib/ttk/fetchers/server/sender_rb.html +127 -0
- data/doc/html/files/lib/ttk/filters/BasicLogger_rb.html +126 -0
- data/doc/html/files/lib/ttk/filters/Filter_rb.html +119 -0
- data/doc/html/files/lib/ttk/filters/Saver_rb.html +119 -0
- data/doc/html/files/lib/ttk/loaders/Loader_rb.html +119 -0
- data/doc/html/files/lib/ttk/loaders/OYaml_rb.html +126 -0
- data/doc/html/files/lib/ttk/loaders/YamlOld_rb.html +126 -0
- data/doc/html/files/lib/ttk/loaders/Yaml_rb.html +126 -0
- data/doc/html/files/lib/ttk/logger/path_rb.html +119 -0
- data/doc/html/files/lib/ttk/logger/section_node_rb.html +119 -0
- data/doc/html/files/lib/ttk/logger/severity_rb.html +119 -0
- data/doc/html/files/lib/ttk/logger/to_ttk_log_rb.html +119 -0
- data/doc/html/files/lib/ttk/logger/verbosity_rb.html +119 -0
- data/doc/html/files/lib/ttk/logger_factory_rb.html +119 -0
- data/doc/html/files/lib/ttk/logger_rb.html +131 -0
- data/doc/html/files/lib/ttk/monitors/Client_rb.html +119 -0
- data/doc/html/files/lib/ttk/monitors/Monitor_rb.html +127 -0
- data/doc/html/files/lib/ttk/monitors/Server_rb.html +126 -0
- data/doc/html/files/lib/ttk/services/DRbService/sub_testable_rb.html +119 -0
- data/doc/html/files/lib/ttk/services/DRbService_rb.html +126 -0
- data/doc/html/files/lib/ttk/services/FetcherClient_rb.html +119 -0
- data/doc/html/files/lib/ttk/services/FetcherServer_rb.html +119 -0
- data/doc/html/files/lib/ttk/services/MonitorClient_rb.html +119 -0
- data/doc/html/files/lib/ttk/services/MonitorServer_rb.html +119 -0
- data/doc/html/files/lib/ttk/services/TesterClient_rb.html +119 -0
- data/doc/html/files/lib/ttk/services/TesterMaster_rb.html +119 -0
- data/doc/html/files/lib/ttk/services/TesterSlave_rb.html +119 -0
- data/doc/html/files/lib/ttk/status_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Abort_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Authors_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Ball_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Block_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Bootstrap_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Checkout_rb.html +127 -0
- data/doc/html/files/lib/ttk/strategies/Clean_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/CmdBase_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Cmd_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Collection_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Compile_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Composite_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Configure_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/DistDelegate_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/DistDuplicate_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/DistStrategy_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Distribute_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Error_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Extract_rb.html +126 -0
- data/doc/html/files/lib/ttk/strategies/Fail_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Fetch_rb.html +127 -0
- data/doc/html/files/lib/ttk/strategies/Fetcher_rb.html +126 -0
- data/doc/html/files/lib/ttk/strategies/Glob_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/IOBased_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Import_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/JUnit_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/KillAll_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Make_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/PackageCollection_rb.html +126 -0
- data/doc/html/files/lib/ttk/strategies/Package_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Pass_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Pool_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/ProbabilityThreshold_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Proxy_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/RUnit_rb.html +127 -0
- data/doc/html/files/lib/ttk/strategies/RemoteCmd_rb.html +126 -0
- data/doc/html/files/lib/ttk/strategies/SignalCmd_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Sleep_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/SqlQuery_rb.html +126 -0
- data/doc/html/files/lib/ttk/strategies/Strategy/assert_eval_rb.html +127 -0
- data/doc/html/files/lib/ttk/strategies/Strategy_rb.html +131 -0
- data/doc/html/files/lib/ttk/strategies/Streams/Diff_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Streams/Stream_rb.html +126 -0
- data/doc/html/files/lib/ttk/strategies/Stub_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/SubCmd_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Suite_rb.html +119 -0
- data/doc/html/files/lib/ttk/strategies/Test_rb.html +127 -0
- data/doc/html/files/lib/ttk/strategies/Tester_rb.html +126 -0
- data/doc/html/files/lib/ttk/symtbl_rb.html +126 -0
- data/doc/html/files/lib/ttk/testers/Master_rb.html +119 -0
- data/doc/html/files/lib/ttk/testers/Slave_rb.html +119 -0
- data/doc/html/files/lib/ttk/testers/Tester_rb.html +131 -0
- data/doc/html/files/lib/ttk/testers/tester/config_rb.html +126 -0
- data/doc/html/files/lib/ttk/testers/tester/notifier_rb.html +119 -0
- data/doc/html/files/lib/ttk/testers/tester/query_node_rb.html +126 -0
- data/doc/html/files/lib/ttk/testers/tester/remote_status_rb.html +119 -0
- data/doc/html/files/lib/ttk/testers/tester/running_task_rb.html +119 -0
- data/doc/html/files/lib/ttk/testers/tester/score_rb.html +119 -0
- data/doc/html/files/lib/ttk/weights/WExpr_rb.html +119 -0
- data/doc/html/files/lib/ttk/weights/WFloat_rb.html +119 -0
- data/doc/html/files/lib/ttk/weights/WMin_rb.html +119 -0
- data/doc/html/files/lib/ttk/weights/Weight_rb.html +126 -0
- data/doc/html/files/lib/ttk_rb.html +146 -0
- data/doc/html/files/lib/ttkd_rb.html +131 -0
- data/doc/html/files/template/README.html +160 -0
- data/doc/html/files/test/examples/README.html +190 -0
- data/doc/html/fr_class_index.html +186 -0
- data/doc/html/fr_file_index.html +147 -0
- data/doc/html/fr_method_index.html +581 -0
- data/doc/html/index.html +24 -0
- data/doc/html/rdoc-style.css +208 -0
- data/lib/ttk.rb +111 -0
- data/lib/ttk/Tools/HostDispatcher.rb +44 -0
- data/lib/ttk/Tools/SafeEval.rb +64 -0
- data/lib/ttk/Tools/cut_output.rb +35 -0
- data/lib/ttk/Tools/io/delegator.rb +88 -0
- data/lib/ttk/Tools/io/dispatch.rb +31 -0
- data/lib/ttk/Tools/io/ext.rb +70 -0
- data/lib/ttk/Tools/io/filters.rb +71 -0
- data/lib/ttk/daemons/Daemon.rb +34 -0
- data/lib/ttk/daemons/Master.rb +34 -0
- data/lib/ttk/daemons/Slave.rb +29 -0
- data/lib/ttk/daemons/daemon/logger.rb +57 -0
- data/lib/ttk/dumpers/Dumper.rb +81 -0
- data/lib/ttk/dumpers/Notif.rb +33 -0
- data/lib/ttk/dumpers/Xml.rb +112 -0
- data/lib/ttk/dumpers/Yaml.rb +159 -0
- data/lib/ttk/fetchers/Client.rb +41 -0
- data/lib/ttk/fetchers/Server.rb +49 -0
- data/lib/ttk/fetchers/client/receiver.rb +62 -0
- data/lib/ttk/fetchers/server/sender.rb +69 -0
- data/lib/ttk/filters/BasicLogger.rb +30 -0
- data/lib/ttk/filters/Filter.rb +24 -0
- data/lib/ttk/filters/Saver.rb +60 -0
- data/lib/ttk/loaders/Loader.rb +123 -0
- data/lib/ttk/loaders/OYaml.rb +60 -0
- data/lib/ttk/loaders/Yaml.rb +74 -0
- data/lib/ttk/loaders/YamlOld.rb +65 -0
- data/lib/ttk/logger.rb +237 -0
- data/lib/ttk/logger/path.rb +23 -0
- data/lib/ttk/logger/section_node.rb +214 -0
- data/lib/ttk/logger/severity.rb +62 -0
- data/lib/ttk/logger/to_ttk_log.rb +83 -0
- data/lib/ttk/logger/verbosity.rb +61 -0
- data/lib/ttk/logger_factory.rb +50 -0
- data/lib/ttk/monitors/Client.rb +61 -0
- data/lib/ttk/monitors/Monitor.rb +50 -0
- data/lib/ttk/monitors/Server.rb +73 -0
- data/lib/ttk/services/DRbService.rb +45 -0
- data/lib/ttk/services/DRbService/sub_testable.rb +41 -0
- data/lib/ttk/services/FetcherClient.rb +31 -0
- data/lib/ttk/services/FetcherServer.rb +23 -0
- data/lib/ttk/services/MonitorClient.rb +31 -0
- data/lib/ttk/services/MonitorServer.rb +23 -0
- data/lib/ttk/services/TesterClient.rb +38 -0
- data/lib/ttk/services/TesterMaster.rb +40 -0
- data/lib/ttk/services/TesterSlave.rb +31 -0
- data/lib/ttk/status.rb +190 -0
- data/lib/ttk/strategies/Abort.rb +24 -0
- data/lib/ttk/strategies/Authors.rb +43 -0
- data/lib/ttk/strategies/Ball.rb +68 -0
- data/lib/ttk/strategies/Block.rb +95 -0
- data/lib/ttk/strategies/Bootstrap.rb +52 -0
- data/lib/ttk/strategies/Checkout.rb +53 -0
- data/lib/ttk/strategies/Clean.rb +29 -0
- data/lib/ttk/strategies/Cmd.rb +55 -0
- data/lib/ttk/strategies/CmdBase.rb +103 -0
- data/lib/ttk/strategies/Collection.rb +131 -0
- data/lib/ttk/strategies/Compile.rb +56 -0
- data/lib/ttk/strategies/Composite.rb +173 -0
- data/lib/ttk/strategies/Configure.rb +64 -0
- data/lib/ttk/strategies/DistDelegate.rb +45 -0
- data/lib/ttk/strategies/DistDuplicate.rb +64 -0
- data/lib/ttk/strategies/DistStrategy.rb +42 -0
- data/lib/ttk/strategies/Distribute.rb +39 -0
- data/lib/ttk/strategies/Error.rb +23 -0
- data/lib/ttk/strategies/Extract.rb +45 -0
- data/lib/ttk/strategies/Fail.rb +26 -0
- data/lib/ttk/strategies/Fetch.rb +124 -0
- data/lib/ttk/strategies/Fetcher.rb +74 -0
- data/lib/ttk/strategies/Glob.rb +48 -0
- data/lib/ttk/strategies/IOBased.rb +156 -0
- data/lib/ttk/strategies/Import.rb +45 -0
- data/lib/ttk/strategies/JUnit.rb +205 -0
- data/lib/ttk/strategies/KillAll.rb +59 -0
- data/lib/ttk/strategies/Make.rb +94 -0
- data/lib/ttk/strategies/Package.rb +128 -0
- data/lib/ttk/strategies/PackageCollection.rb +72 -0
- data/lib/ttk/strategies/Pass.rb +24 -0
- data/lib/ttk/strategies/Pool.rb +99 -0
- data/lib/ttk/strategies/ProbabilityThreshold.rb +42 -0
- data/lib/ttk/strategies/Proxy.rb +42 -0
- data/lib/ttk/strategies/RUnit.rb +170 -0
- data/lib/ttk/strategies/RemoteCmd.rb +48 -0
- data/lib/ttk/strategies/SignalCmd.rb +85 -0
- data/lib/ttk/strategies/Sleep.rb +36 -0
- data/lib/ttk/strategies/SqlQuery.rb +120 -0
- data/lib/ttk/strategies/Strategy.rb +606 -0
- data/lib/ttk/strategies/Strategy/assert_eval.rb +53 -0
- data/lib/ttk/strategies/Streams/Diff.rb +60 -0
- data/lib/ttk/strategies/Streams/Stream.rb +133 -0
- data/lib/ttk/strategies/Stub.rb +35 -0
- data/lib/ttk/strategies/SubCmd.rb +58 -0
- data/lib/ttk/strategies/Suite.rb +118 -0
- data/lib/ttk/strategies/Test.rb +88 -0
- data/lib/ttk/strategies/Tester.rb +59 -0
- data/lib/ttk/symtbl.rb +115 -0
- data/lib/ttk/testers/Master.rb +69 -0
- data/lib/ttk/testers/Slave.rb +19 -0
- data/lib/ttk/testers/Tester.rb +134 -0
- data/lib/ttk/testers/tester/config.rb +65 -0
- data/lib/ttk/testers/tester/notifier.rb +24 -0
- data/lib/ttk/testers/tester/query_node.rb +91 -0
- data/lib/ttk/testers/tester/remote_status.rb +29 -0
- data/lib/ttk/testers/tester/running_task.rb +47 -0
- data/lib/ttk/testers/tester/score.rb +34 -0
- data/lib/ttk/weights/WExpr.rb +68 -0
- data/lib/ttk/weights/WFloat.rb +23 -0
- data/lib/ttk/weights/WMin.rb +22 -0
- data/lib/ttk/weights/Weight.rb +85 -0
- data/lib/ttkd.rb +51 -0
- data/ruby_ex/abstract.rb +246 -0
- data/ruby_ex/abstract_node.rb +85 -0
- data/ruby_ex/array_each_pair.rb +18 -0
- data/ruby_ex/ask.rb +101 -0
- data/ruby_ex/attributed_class.rb +304 -0
- data/ruby_ex/cache.rb +373 -0
- data/ruby_ex/checkout.rb +12 -0
- data/ruby_ex/config_file.rb +96 -0
- data/ruby_ex/const_regexp.rb +59 -0
- data/ruby_ex/daemon.rb +134 -0
- data/ruby_ex/diff.rb +667 -0
- data/ruby_ex/dlogger.rb +62 -0
- data/ruby_ex/drb/dispatcher.rb +252 -0
- data/ruby_ex/drb/dispatcher_server_test.rb +29 -0
- data/ruby_ex/drb/drb_observable.rb +97 -0
- data/ruby_ex/drb/drb_observable_pool.rb +27 -0
- data/ruby_ex/drb/drb_service.rb +43 -0
- data/ruby_ex/drb/drb_undumped_attributes.rb +55 -0
- data/ruby_ex/drb/drb_undumped_indexed_object.rb +54 -0
- data/ruby_ex/drb/insecure_protected_methods.rb +103 -0
- data/ruby_ex/drb/session_client_test.rb +40 -0
- data/ruby_ex/drb/session_manager.rb +246 -0
- data/ruby_ex/drb/session_server.rb +53 -0
- data/ruby_ex/dtime.rb +143 -0
- data/ruby_ex/dumpable_proc.rb +63 -0
- data/ruby_ex/exception.rb +32 -0
- data/ruby_ex/filetype.rb +229 -0
- data/ruby_ex/fileutils_ex.rb +44 -0
- data/ruby_ex/fold.rb +58 -0
- data/ruby_ex/generate_id.rb +31 -0
- data/ruby_ex/inactive_timeout.rb +137 -0
- data/ruby_ex/indexed_node.rb +66 -0
- data/ruby_ex/io_marshal.rb +100 -0
- data/ruby_ex/ioo.rb +194 -0
- data/ruby_ex/labeled_node.rb +63 -0
- data/ruby_ex/logger_observer.rb +23 -0
- data/ruby_ex/md5sum.rb +66 -0
- data/ruby_ex/mktemp.rb +208 -0
- data/ruby_ex/module/attr_once.rb +36 -0
- data/ruby_ex/module/autoload_tree.rb +68 -0
- data/ruby_ex/module/hierarchy.rb +335 -0
- data/ruby_ex/module/instance_method_visibility.rb +73 -0
- data/ruby_ex/module_ex.rb +11 -0
- data/ruby_ex/node.rb +80 -0
- data/ruby_ex/object_monitor.rb +145 -0
- data/ruby_ex/object_monitor_activity.rb +33 -0
- data/ruby_ex/observable.rb +140 -0
- data/ruby_ex/observable_pool.rb +293 -0
- data/ruby_ex/orderedhash.rb +252 -0
- data/ruby_ex/pathname_ex.rb +113 -0
- data/ruby_ex/pp_hierarchy.rb +29 -0
- data/ruby_ex/pseudo_cache.rb +190 -0
- data/ruby_ex/queue.rb +56 -0
- data/ruby_ex/safe_eval.rb +348 -0
- data/ruby_ex/service_manager.rb +121 -0
- data/ruby_ex/session/administrable.rb +120 -0
- data/ruby_ex/session/client.rb +153 -0
- data/ruby_ex/session/const.rb +18 -0
- data/ruby_ex/session/dispatcher.rb +184 -0
- data/ruby_ex/session/error.rb +21 -0
- data/ruby_ex/session/fetchable.rb +57 -0
- data/ruby_ex/session/fetcher.rb +62 -0
- data/ruby_ex/session/hookable.rb +26 -0
- data/ruby_ex/session/profile.rb +110 -0
- data/ruby_ex/session/server.rb +582 -0
- data/ruby_ex/session/test/administrable_test.rb +337 -0
- data/ruby_ex/session/test/basic_test.rb +523 -0
- data/ruby_ex/session/test/dispatcher_test.rb +409 -0
- data/ruby_ex/session/test/fetchable_test.rb +119 -0
- data/ruby_ex/session/test/sub_server_test.rb +188 -0
- data/ruby_ex/spring.rb +136 -0
- data/ruby_ex/spring_set.rb +137 -0
- data/ruby_ex/symtbl.rb +106 -0
- data/ruby_ex/synflow.rb +474 -0
- data/ruby_ex/test/unit/ui/yaml/testrunner.rb +164 -0
- data/ruby_ex/thread_mutex.rb +10 -0
- data/ruby_ex/timeout_ex.rb +81 -0
- data/ruby_ex/top_down.rb +73 -0
- data/ruby_ex/trace.rb +26 -0
- data/ruby_ex/uri/druby.rb +81 -0
- data/ruby_ex/uri/file.rb +39 -0
- data/ruby_ex/uri/ftp_ex.rb +37 -0
- data/ruby_ex/uri/http_ex.rb +43 -0
- data/ruby_ex/uri/svn.rb +101 -0
- data/ruby_ex/uri_ex.rb +35 -0
- data/ruby_ex/version.rb +66 -0
- data/ruby_ex/yaml/basenode_ext.rb +63 -0
- data/ruby_ex/yaml/transform.rb +447 -0
- data/ruby_ex/yaml/yregexpath.rb +76 -0
- data/test/all/TestTAssert/first.yml +65 -0
- data/test/all/TestTAssert/segfault.yml +31 -0
- data/test/all/dist-suite-indirect-nested.yml +15 -0
- data/test/all/dist-suite-nested-3.yml +16 -0
- data/test/all/dist-suite-nested-in-pool.yml +51 -0
- data/test/all/dist-suite-nested.yml +28 -0
- data/test/all/no_suite.yml +18 -0
- data/test/all/pipeline-timeout.yml +21 -0
- data/test/all/remote_cmd.yml +23 -0
- data/test/all/remote_dispatcher.yml +26 -0
- data/test/all/suite_timeout.yml +32 -0
- data/test/all/weight.yml +113 -0
- data/test/all/xunit/junit/MultiRight/Foo/Foo.java +11 -0
- data/test/all/xunit/junit/MultiRight/Foo/FooTest.java +15 -0
- data/test/all/xunit/junit/MultiRight/MultiRight.java +13 -0
- data/test/all/xunit/junit/MultiRight/MultiRightTest.java +12 -0
- data/test/all/xunit/junit/MultiRight/bar/Bar.java +11 -0
- data/test/all/xunit/junit/MultiRight/bar/BarTest.java +21 -0
- data/test/all/xunit/junit/MultiRight/build.sh +7 -0
- data/test/all/xunit/junit/SimpleException/SimpleExceptionTest.java +11 -0
- data/test/all/xunit/junit/SimpleException/build.sh +4 -0
- data/test/all/xunit/junit/build.sh +9 -0
- data/test/all/xunit/junit/multibar.yml +6 -0
- data/test/all/xunit/junit/multifoo.yml +6 -0
- data/test/all/xunit/junit/multiright.yml +8 -0
- data/test/all/xunit/junit/simple_exception.yml +6 -0
- data/test/examples-suite.yml +10 -0
- data/test/examples/README +68 -0
- data/test/examples/cache/simple.yml +33 -0
- data/test/examples/sql/basic.yml +26 -0
- data/test/examples/students-suite.yml +11 -0
- data/test/examples/students/ball.yml +13 -0
- data/test/examples/students/glob_stud.yml +23 -0
- data/test/examples/students/mini-lib.yml +73 -0
- data/test/examples/students/pool_stud.yml +35 -0
- data/test/examples/students/stud.yml +25 -0
- data/test/ressources/ball/20040804-exam_a1-zapngo-tessar_m.tar.gz +0 -0
- data/test/ressources/ball/Makefile +24 -0
- data/test/ressources/ball/bar_p-mini-lib.tar.bz2 +0 -0
- data/test/ressources/ball/bar_p-mini-lib/Makefile +20 -0
- data/test/ressources/ball/bar_p-mini-lib/my_strlen.c +13 -0
- data/test/ressources/ball/foo_s-mini-lib.tar.bz2 +0 -0
- data/test/ressources/ball/foo_s-mini-lib/Makefile +20 -0
- data/test/ressources/ball/foo_s-mini-lib/configure +2 -0
- data/test/ressources/ball/foo_s-mini-lib/my_strlen.c +10 -0
- data/test/ressources/ball/hello.tar.bz2 +0 -0
- data/test/ressources/ball/hello.tar.gz +0 -0
- data/test/ressources/ball/hello/Makefile +14 -0
- data/test/ressources/ball/hello/hello.c +7 -0
- data/test/ressources/ball/jack-exit.tar.bz2 +0 -0
- data/test/ressources/ball/jack-exit/Makefile +14 -0
- data/test/ressources/ball/jack-exit/exit.c +16 -0
- data/test/ressources/ball/joe-exit.tar.bz2 +0 -0
- data/test/ressources/ball/joe-exit/Makefile +14 -0
- data/test/ressources/ball/joe-exit/exit.c +8 -0
- data/test/ressources/ball/joe_i-mini-lib.tar.bz2 +0 -0
- data/test/ressources/ball/joe_i-mini-lib/Makefile +20 -0
- data/test/ressources/ball/joe_i-mini-lib/configure +2 -0
- data/test/ressources/ball/joe_i-mini-lib/my_strlen.c +10 -0
- data/test/ressources/ball/john-exit.tar.bz2 +0 -0
- data/test/ressources/ball/john-exit/Makefile +14 -0
- data/test/ressources/ball/john-exit/exit.c +6 -0
- data/test/ressources/ball/qux_j-mini-lib.tar.bz2 +0 -0
- data/test/ressources/ball/qux_j-mini-lib/Makefile +20 -0
- data/test/ressources/ball/qux_j-mini-lib/my_strlen.c +12 -0
- data/test/ressources/mini-lib/Makefile +9 -0
- data/test/ressources/mini-lib/strlen.c +15 -0
- data/test/ressources/package/pkg_foo.tar.gz +0 -0
- data/test/ressources/package/pkg_foo/Makefile +20 -0
- data/test/ressources/package/pkg_foo/bootstrap +3 -0
- data/test/ressources/package/pkg_foo/configure +3 -0
- data/test/ressources/package/pkg_foo/foo.sh +2 -0
- data/test/ressources/runit/bad.rb +30 -0
- data/test/ressources/runit/error.rb +6 -0
- data/test/ressources/runit/good.rb +30 -0
- data/test/ressources/text/1.txt +4 -0
- data/test/runit/dumpers/xml_test.rb +75 -0
- data/test/runit/dumpers/yaml_test.rb +68 -0
- data/test/runit/fetchers/fetchers_test.rb +48 -0
- data/test/runit/loaders/OYaml_test.rb +35 -0
- data/test/runit/logger/section_node_test.rb +125 -0
- data/test/runit/logger/severity_test.rb +41 -0
- data/test/runit/logger/verbosity_test.rb +49 -0
- data/test/runit/logger_test.rb +295 -0
- data/test/runit/strategies/Strategy/assert_eval_test.rb +196 -0
- data/test/ttk-check +26 -0
- data/test/ttk-dist-suite.yml +44 -0
- data/test/ttk-dist/cat/file.in +3 -0
- data/test/ttk-dist/cat/file.out +3 -0
- data/test/ttk-dist/dist-abort.yml +51 -0
- data/test/ttk-dist/dist-cat.yml +38 -0
- data/test/ttk-dist/dist-delegate.yml +56 -0
- data/test/ttk-dist/dist-dispatch.yml +28 -0
- data/test/ttk-dist/dist-error.yml +10 -0
- data/test/ttk-dist/dist-fail.yml +9 -0
- data/test/ttk-dist/dist-nested-pass.yml +11 -0
- data/test/ttk-dist/dist-pass.yml +8 -0
- data/test/ttk-dist/dist-ribute.yml +31 -0
- data/test/ttk-dist/dist-suite.yml +18 -0
- data/test/ttk-dist/local-fetch.yml +17 -0
- data/test/ttk-dist/tester.yml +36 -0
- data/test/ttk-minimal-suite.yml +12 -0
- data/test/ttk-minimal/author.yml +14 -0
- data/test/ttk-minimal/base.yml +137 -0
- data/test/ttk-minimal/block.yml +15 -0
- data/test/ttk-minimal/cat.yml +19 -0
- data/test/ttk-minimal/diff.yml +29 -0
- data/test/ttk-minimal/env_cmd.yml +54 -0
- data/test/ttk-minimal/exit.yml +17 -0
- data/test/ttk-minimal/fatal.yml +32 -0
- data/test/ttk-minimal/glob.yml +13 -0
- data/test/ttk-minimal/import.yml +33 -0
- data/test/ttk-minimal/killall.yml +36 -0
- data/test/ttk-minimal/pkg.yml +18 -0
- data/test/ttk-minimal/pool.yml +44 -0
- data/test/ttk-minimal/probability_threshold.yml +39 -0
- data/test/ttk-minimal/runit.yml +25 -0
- data/test/ttk-minimal/signal_cmd.yml +24 -0
- data/test/ttk-minimal/sub.yml +9 -0
- data/test/ttk-minimal/test.yml +26 -0
- data/test/ttk-minimal/timeout.yml +24 -0
- data/test/ttk-minimal/unit_test.yml +13 -0
- data/test/ttk-minimal/wc.yml +28 -0
- metadata +801 -0
data/AUTHORS
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
TTK was written by and with the assistance of:
|
|
2
|
+
|
|
3
|
+
* Vincent Cuissard <cuissa_v@epita.fr>
|
|
4
|
+
- SqlQuery strategy
|
|
5
|
+
- A lot of feedback
|
|
6
|
+
|
|
7
|
+
* Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
8
|
+
- Initial Design
|
|
9
|
+
- Maintenance
|
|
10
|
+
- Distributed mode
|
|
11
|
+
- Global kernel code review
|
|
12
|
+
- Current logger implementation
|
|
13
|
+
|
|
14
|
+
* Nicolas Pouillard <ertai@feydakins.org>
|
|
15
|
+
- Initial Design
|
|
16
|
+
- Maintenance
|
|
17
|
+
- Abstract strategies
|
|
18
|
+
- Initial logger implementation
|
|
19
|
+
- YAML loader and dumper
|
|
20
|
+
- Current repository administration
|
|
21
|
+
- Mailing list administration
|
|
22
|
+
- Tracker administration
|
|
23
|
+
|
|
24
|
+
* Jerome Pouiller <pouill_j@epita.fr>
|
|
25
|
+
- Initial Design
|
|
26
|
+
- First repository administration
|
|
27
|
+
- Initial XML dumper
|
|
28
|
+
|
|
29
|
+
* Marco Tessari <marco.tessari@epita.fr>
|
|
30
|
+
- Initial Design
|
|
31
|
+
- YAML transformation: YPATH
|
|
32
|
+
- Author, Compile, Extract strategies
|
data/COPYING
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
LEGAL NOTICE INFORMATION
|
|
2
|
+
------------------------
|
|
3
|
+
|
|
4
|
+
TTK is copyrighted free software by Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
5
|
+
and Nicolas Pouillard <ertai@feydakins.org>. The "TTK team" and/or "TTK's
|
|
6
|
+
maintainers" phrase refer to Nicolas Despr�s and/or Nicolas Pouillard.
|
|
7
|
+
|
|
8
|
+
All the files in the distribution are covered under either the LGPL license
|
|
9
|
+
(see the LGPL file) or a public-domain license mentioned in the header of the
|
|
10
|
+
file. All the files in the distribution are copyrighted to the TTK's team or
|
|
11
|
+
to the specific author(s) mentioned in the file header.
|
|
12
|
+
|
|
13
|
+
TTK is designed to be extensible by adding new loaders, dumpers, filters and
|
|
14
|
+
strategies. Every extensions are copyrighted to their respective authors and
|
|
15
|
+
are covered by their respective license.
|
|
16
|
+
|
|
17
|
+
Every files included in the ruby_ex directory are copyrighted to their
|
|
18
|
+
respective authors under the terms of the license mentioned in the header file.
|
data/ChangeLog
ADDED
|
@@ -0,0 +1,4629 @@
|
|
|
1
|
+
2005-04-14 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
2
|
+
|
|
3
|
+
* Rakefile: Put important files at the end to avoid RDoc to delete
|
|
4
|
+
the doc. Doesn't work yet for the TTK::Loaders documentation.
|
|
5
|
+
|
|
6
|
+
2005-04-14 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
7
|
+
|
|
8
|
+
* test/runit/dumpers/xml_test.rb: Fix a test. Use a temporary file
|
|
9
|
+
instead of a StringIO.
|
|
10
|
+
* test/examples/students/pool_stud.yml: Comment the pre_assertion hack.
|
|
11
|
+
* lib/ttk/logger/to_ttk_log.rb: Pretty print the backtrace only in
|
|
12
|
+
debug mode.
|
|
13
|
+
* lib/ttk/dumpers/Dumper.rb: Typo. Do not close the stream (for the
|
|
14
|
+
release only !).
|
|
15
|
+
* lib/ttk/loaders/Loader.rb: Typo.
|
|
16
|
+
* lib/ttk/strategies/SubCmd.rb: Reverse @status and doc.
|
|
17
|
+
* lib/ttk/strategies/Strategy.rb: Add a FIXME.
|
|
18
|
+
* lib/ttk/strategies/Checkout.rb: Typo. Then no more warning and no
|
|
19
|
+
more bug in pool_stud.yml.
|
|
20
|
+
* bin/ttk, bin/getopts/ttk.rb: --no-default-observer if you want
|
|
21
|
+
to see nothing on stdout.
|
|
22
|
+
|
|
23
|
+
2005-04-14 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
24
|
+
|
|
25
|
+
* lib/ttk/dumpers/Dumper.rb, lib/ttk/loaders/Loader.rb: Typos.
|
|
26
|
+
|
|
27
|
+
2005-04-14 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
28
|
+
|
|
29
|
+
* lib/ttk/dumpers/Dumper.rb: Document the Dumpers module and the
|
|
30
|
+
Dumpers::Dumper abstract class.
|
|
31
|
+
* lib/ttk/loaders/Loader.rb: Document the Loaders module.
|
|
32
|
+
|
|
33
|
+
2005-04-13 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
34
|
+
|
|
35
|
+
* test/ttk-minimal/author.yml: Use Checkout instead of Extract.
|
|
36
|
+
* lib/ttk/strategies/Collection.rb:
|
|
37
|
+
Update to the new option of assign_one.
|
|
38
|
+
* lib/ttk/strategies/SignalCmd.rb:
|
|
39
|
+
Typo, and move @@signal_names initialization.
|
|
40
|
+
* lib/ttk/strategies/Checkout.rb: Move the url conversion.
|
|
41
|
+
* lib/ttk/strategies/IOBased.rb: Make make_streams protected.
|
|
42
|
+
* bin/ttk, lib/ttk/strategies/Strategy.rb: Improve the @log transmission.
|
|
43
|
+
* bin/getopts/ttk.rb: Use INFO as the default severity level.
|
|
44
|
+
* test/ttk-minimal/signal_cmd.yml: Update layout.
|
|
45
|
+
|
|
46
|
+
2005-04-13 Nicolas Despr�s <nicolas.despres@lrde.epita.fr>
|
|
47
|
+
|
|
48
|
+
* lib/ttk/dumpers/Notif.rb, lib/ttk/dumpers/Xml.rb: Call super close to
|
|
49
|
+
ensure to close the stream.
|
|
50
|
+
* lib/ttk/dumpers/Yaml.rb: Flush the stream if it's not closed.
|
|
51
|
+
* lib/ttk/dumpers/TracesXml.rb: Remove. Deprecated and not used.
|
|
52
|
+
* lib/ttk/dumpers/Dumper.rb: Every dumper close the stream if it is not
|
|
53
|
+
already closed.
|
|
54
|
+
* lib/ttk/logger.rb: Add a closed? method. Send the close notification
|
|
55
|
+
only once.
|
|
56
|
+
* bin/ttk: No longer add the log file to the observers list, because
|
|
57
|
+
this done in the getopts.
|
|
58
|
+
* bin/getopts/ttk.rb: Add the the dumper on the log file to the
|
|
59
|
+
observer list.
|
|
60
|
+
* template/new_dumper.rb: Do something before the super close.
|
|
61
|
+
|
|
62
|
+
2005-04-13 Nicolas Despr�s <nicolas.despres@lrde.epita.fr>
|
|
63
|
+
|
|
64
|
+
* bin/ttk: Assign symbols from the command line to the root test suite.
|
|
65
|
+
* bin/getopts/ttk.rb: Add -S option to add symbols to the root test
|
|
66
|
+
suite from the command line.
|
|
67
|
+
|
|
68
|
+
2005-04-13 Nicolas Despr�s <nicolas.despres@lrde.epita.fr>
|
|
69
|
+
|
|
70
|
+
* Rakefile: Full documentation generation. Package depends on revision
|
|
71
|
+
and date.
|
|
72
|
+
* bin/getopts/ttk.rb: --version doesn't crash if REVISION and DATE not
|
|
73
|
+
available.
|
|
74
|
+
|
|
75
|
+
2005-04-13 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
76
|
+
|
|
77
|
+
* Rakefile: Add rules to generate REVISION and DATE.
|
|
78
|
+
* vcs/ttk.rb: Do not touch any more REVISION and DATE.
|
|
79
|
+
* REVISION, DATE: Remove because it doesn't work with vcs.
|
|
80
|
+
|
|
81
|
+
2005-04-13 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
82
|
+
|
|
83
|
+
* test/runit/logger/verbosity_test.rb,
|
|
84
|
+
* test/runit/logger/section_node_test.rb,
|
|
85
|
+
* test/runit/logger/severity_test.rb, test/runit/dumpers/xml_test.rb,
|
|
86
|
+
* test/runit/dumpers/yaml_test.rb, test/runit/logger_test.rb,
|
|
87
|
+
* test/runit/fetchers/fetchers_test.rb,
|
|
88
|
+
* test/runit/loaders/OYaml_test.rb,
|
|
89
|
+
* test/runit/strategies/Strategy/assert_eval_test.rb,
|
|
90
|
+
* test/ttk-dist/dist-dispatch.yml, test/ttk-dist/local-fetch.yml,
|
|
91
|
+
* test/ttk-dist/tester.yml, test/ttk-dist/cat/file.in,
|
|
92
|
+
* test/ttk-dist/cat/file.out, test/ttk-dist/dist-nested-pass.yml,
|
|
93
|
+
* test/ttk-dist/dist-pass.yml, test/ttk-dist/dist-cat.yml,
|
|
94
|
+
* test/ttk-dist/dist-abort.yml, test/ttk-dist/dist-error.yml,
|
|
95
|
+
* test/ttk-dist/dist-suite.yml, test/ttk-dist/dist-delegate.yml,
|
|
96
|
+
* test/ttk-dist/dist-ribute.yml, test/ttk-dist/dist-fail.yml,
|
|
97
|
+
* test/examples-suite.yml, test/ttk-minimal/test.yml,
|
|
98
|
+
* test/ttk-minimal/pkg.yml, test/ttk-minimal/glob.yml,
|
|
99
|
+
* test/ttk-minimal/killall.yml, test/ttk-minimal/timeout.yml,
|
|
100
|
+
* test/ttk-minimal/fatal.yml, test/ttk-minimal/sub.yml,
|
|
101
|
+
* test/ttk-minimal/block.yml,
|
|
102
|
+
* test/ttk-minimal/probability_threshold.yml,
|
|
103
|
+
* test/ttk-minimal/signal_cmd.yml, test/ttk-minimal/runit.yml,
|
|
104
|
+
* test/ttk-minimal/author.yml, test/ttk-minimal/cat.yml,
|
|
105
|
+
* test/ttk-minimal/diff.yml, test/ttk-minimal/exit.yml,
|
|
106
|
+
* test/ttk-minimal/pool.yml, test/ttk-minimal/wc.yml,
|
|
107
|
+
* test/ttk-minimal/base.yml, test/ttk-minimal/import.yml,
|
|
108
|
+
* test/ttk-minimal/env_cmd.yml, test/ttk-minimal/unit_test.yml,
|
|
109
|
+
* test/all/suite_timeout.yml, test/all/remote_dispatcher.yml,
|
|
110
|
+
* test/all/no_suite.yml, test/all/TestTAssert/first.yml,
|
|
111
|
+
* test/all/TestTAssert/segfault.yml,
|
|
112
|
+
* test/all/dist-suite-nested-in-pool.yml,
|
|
113
|
+
* test/all/xunit/junit/multibar.yml,
|
|
114
|
+
* test/all/xunit/junit/simple_exception.yml,
|
|
115
|
+
* test/all/xunit/junit/multiright.yml,
|
|
116
|
+
* test/all/xunit/junit/SimpleException/build.sh,
|
|
117
|
+
* test/all/xunit/junit/SimpleException/SimpleExceptionTest.java,
|
|
118
|
+
* test/all/xunit/junit/MultiRight/Foo/FooTest.java,
|
|
119
|
+
* test/all/xunit/junit/MultiRight/Foo/Foo.java,
|
|
120
|
+
* test/all/xunit/junit/MultiRight/bar/BarTest.java,
|
|
121
|
+
* test/all/xunit/junit/MultiRight/bar/Bar.java,
|
|
122
|
+
* test/all/xunit/junit/MultiRight/MultiRight.java,
|
|
123
|
+
* test/all/xunit/junit/MultiRight/MultiRightTest.java,
|
|
124
|
+
* test/all/xunit/junit/MultiRight/build.sh,
|
|
125
|
+
* test/all/xunit/junit/build.sh, test/all/xunit/junit/multifoo.yml,
|
|
126
|
+
* test/all/weight.yml, test/all/pipeline-timeout.yml,
|
|
127
|
+
* test/all/dist-suite-indirect-nested.yml,
|
|
128
|
+
* test/all/dist-suite-nested.yml, test/all/dist-suite-nested-3.yml,
|
|
129
|
+
* test/all/remote_cmd.yml, test/ttk-dist-suite.yml,
|
|
130
|
+
* test/ressources/mini-lib/strlen.c, test/ressources/mini-lib/Makefile,
|
|
131
|
+
* test/ressources/runit/bad.rb, test/ressources/runit/good.rb,
|
|
132
|
+
* test/ressources/runit/error.rb, test/ressources/text/1.txt,
|
|
133
|
+
* test/ressources/ball/jack-exit/exit.c,
|
|
134
|
+
* test/ressources/ball/jack-exit/Makefile,
|
|
135
|
+
* test/ressources/ball/bar_p-mini-lib/my_strlen.c,
|
|
136
|
+
* test/ressources/ball/bar_p-mini-lib/Makefile,
|
|
137
|
+
* test/ressources/ball/joe_i-mini-lib/configure,
|
|
138
|
+
* test/ressources/ball/joe_i-mini-lib/my_strlen.c,
|
|
139
|
+
* test/ressources/ball/joe_i-mini-lib/Makefile,
|
|
140
|
+
* test/ressources/ball/foo_s-mini-lib.tar.bz2,
|
|
141
|
+
* test/ressources/ball/hello.tar.bz2,
|
|
142
|
+
* test/ressources/ball/joe-exit/exit.c,
|
|
143
|
+
* test/ressources/ball/joe-exit/Makefile,
|
|
144
|
+
* test/ressources/ball/qux_j-mini-lib/Makefile,
|
|
145
|
+
* test/ressources/ball/qux_j-mini-lib/my_strlen.c,
|
|
146
|
+
* test/ressources/ball/20040804-exam_a1-zapngo-tessar_m.tar.gz,
|
|
147
|
+
* test/ressources/ball/john-exit.tar.bz2,
|
|
148
|
+
* test/ressources/ball/jack-exit.tar.bz2,
|
|
149
|
+
* test/ressources/ball/bar_p-mini-lib.tar.bz2,
|
|
150
|
+
* test/ressources/ball/foo_s-mini-lib/configure,
|
|
151
|
+
* test/ressources/ball/foo_s-mini-lib/my_strlen.c,
|
|
152
|
+
* test/ressources/ball/foo_s-mini-lib/Makefile,
|
|
153
|
+
* test/ressources/ball/hello/hello.c,
|
|
154
|
+
* test/ressources/ball/hello/Makefile,
|
|
155
|
+
* test/ressources/ball/joe_i-mini-lib.tar.bz2,
|
|
156
|
+
* test/ressources/ball/john-exit/exit.c,
|
|
157
|
+
* test/ressources/ball/john-exit/Makefile,
|
|
158
|
+
* test/ressources/ball/joe-exit.tar.bz2,
|
|
159
|
+
* test/ressources/ball/qux_j-mini-lib.tar.bz2,
|
|
160
|
+
* test/ressources/ball/hello.tar.gz,
|
|
161
|
+
* test/ressources/ball/Makefile,
|
|
162
|
+
* test/ressources/package/pkg_foo/configure,
|
|
163
|
+
* test/ressources/package/pkg_foo/foo.sh,
|
|
164
|
+
* test/ressources/package/pkg_foo/bootstrap,
|
|
165
|
+
* test/ressources/package/pkg_foo/Makefile,
|
|
166
|
+
* test/ressources/package/pkg_foo.tar.gz,
|
|
167
|
+
* test/ttk-check, test/ttk-minimal-suite.yml,
|
|
168
|
+
* test/examples/sql/basic.yml, test/examples/students-suite.yml,
|
|
169
|
+
* test/examples/cache/simple.yml, test/examples/students/stud.yml,
|
|
170
|
+
* test/examples/students/mini-lib.yml,
|
|
171
|
+
* test/examples/students/glob_stud.yml,
|
|
172
|
+
* test/examples/students/pool_stud.yml,
|
|
173
|
+
* test/examples/students/ball.yml, test/examples/README, TODO.old,
|
|
174
|
+
* Rakefile, AUTHORS, VERSION, ChangeLog, vcs/ttk.rb, misc/expandtab.rb,
|
|
175
|
+
* README, REVISION, lib/ttk/dumpers/Notif.rb, lib/ttk/dumpers/Xml.rb,
|
|
176
|
+
* lib/ttk/dumpers/TracesXml.rb, lib/ttk/dumpers/Yaml.rb,
|
|
177
|
+
* lib/ttk/dumpers/Dumper.rb, lib/ttk/logger/to_ttk_log.rb,
|
|
178
|
+
* lib/ttk/logger/verbosity.rb, lib/ttk/logger/section_node.rb,
|
|
179
|
+
* lib/ttk/logger/severity.rb, lib/ttk/logger/path.rb,
|
|
180
|
+
* lib/ttk/logger.rb, lib/ttk/services/MonitorServer.rb,
|
|
181
|
+
* lib/ttk/services/FetcherClient.rb, lib/ttk/services/TesterSlave.rb,
|
|
182
|
+
* lib/ttk/services/TesterMaster.rb, lib/ttk/services/TesterClient.rb,
|
|
183
|
+
* lib/ttk/services/MonitorClient.rb,
|
|
184
|
+
* lib/ttk/services/DRbService/sub_testable.rb,
|
|
185
|
+
* lib/ttk/services/FetcherServer.rb, lib/ttk/services/DRbService.rb,
|
|
186
|
+
* lib/ttk/status.rb, lib/ttk/daemons/daemon/logger.rb,
|
|
187
|
+
* lib/ttk/daemons/Daemon.rb, lib/ttk/daemons/Slave.rb,
|
|
188
|
+
* lib/ttk/daemons/Master.rb, lib/ttk/testers/tester/remote_status.rb,
|
|
189
|
+
* lib/ttk/testers/tester/notifier.rb,
|
|
190
|
+
* lib/ttk/testers/tester/running_task.rb,
|
|
191
|
+
* lib/ttk/testers/tester/config.rb,
|
|
192
|
+
* lib/ttk/testers/tester/query_node.rb,
|
|
193
|
+
* lib/ttk/testers/tester/score.rb, lib/ttk/testers/Tester.rb,
|
|
194
|
+
* lib/ttk/testers/Slave.rb, lib/ttk/testers/Master.rb,
|
|
195
|
+
* lib/ttk/loaders/YamlOld.rb, lib/ttk/loaders/OYaml.rb,
|
|
196
|
+
* lib/ttk/loaders/Yaml.rb, lib/ttk/loaders/Loader.rb,
|
|
197
|
+
* lib/ttk/Tools/HostDispatcher.rb, lib/ttk/Tools/io/dispatch.rb,
|
|
198
|
+
* lib/ttk/Tools/io/ext.rb, lib/ttk/Tools/io/delegator.rb,
|
|
199
|
+
* lib/ttk/Tools/io/filters.rb, lib/ttk/Tools/SafeEval.rb,
|
|
200
|
+
* lib/ttk/Tools/cut_output.rb, lib/ttk/fetchers/Client.rb,
|
|
201
|
+
* lib/ttk/fetchers/server/sender.rb, lib/ttk/fetchers/Server.rb,
|
|
202
|
+
* lib/ttk/fetchers/client/receiver.rb, lib/ttk/logger_factory.rb,
|
|
203
|
+
* lib/ttk/filters/Saver.rb, lib/ttk/filters/BasicLogger.rb,
|
|
204
|
+
* lib/ttk/filters/Filter.rb, lib/ttk/weights/WExpr.rb,
|
|
205
|
+
* lib/ttk/weights/Weight.rb, lib/ttk/weights/WMin.rb,
|
|
206
|
+
* lib/ttk/weights/WFloat.rb, lib/ttk/strategies/Make.rb,
|
|
207
|
+
* lib/ttk/strategies/Bootstrap.rb, lib/ttk/strategies/SubCmd.rb,
|
|
208
|
+
* lib/ttk/strategies/RemoteCmd.rb, lib/ttk/strategies/Test.rb,
|
|
209
|
+
* lib/ttk/strategies/Fetcher.rb, lib/ttk/strategies/Glob.rb,
|
|
210
|
+
* lib/ttk/strategies/Authors.rb, lib/ttk/strategies/SqlQuery.rb,
|
|
211
|
+
* lib/ttk/strategies/Compile.rb, lib/ttk/strategies/Package.rb,
|
|
212
|
+
* lib/ttk/strategies/DistDelegate.rb,
|
|
213
|
+
* lib/ttk/strategies/Strategy/assert_eval.rb,
|
|
214
|
+
* lib/ttk/strategies/Composite.rb, lib/ttk/strategies/Tester.rb,
|
|
215
|
+
* lib/ttk/strategies/Pass.rb, lib/ttk/strategies/Extract.rb,
|
|
216
|
+
* lib/ttk/strategies/Ball.rb, lib/ttk/strategies/Fail.rb,
|
|
217
|
+
* lib/ttk/strategies/Streams/Diff.rb,
|
|
218
|
+
* lib/ttk/strategies/Streams/Stream.rb,
|
|
219
|
+
* lib/ttk/strategies/Stub.rb, lib/ttk/strategies/Distribute.rb,
|
|
220
|
+
* lib/ttk/strategies/Configure.rb, lib/ttk/strategies/Proxy.rb,
|
|
221
|
+
* lib/ttk/strategies/Clean.rb, lib/ttk/strategies/KillAll.rb,
|
|
222
|
+
* lib/ttk/strategies/DistStrategy.rb, lib/ttk/strategies/Suite.rb,
|
|
223
|
+
* lib/ttk/strategies/JUnit.rb, lib/ttk/strategies/Error.rb,
|
|
224
|
+
* lib/ttk/strategies/Fetch.rb, lib/ttk/strategies/Block.rb,
|
|
225
|
+
* lib/ttk/strategies/Collection.rb,
|
|
226
|
+
* lib/ttk/strategies/ProbabilityThreshold.rb,
|
|
227
|
+
* lib/ttk/strategies/CmdBase.rb, lib/ttk/strategies/DistDuplicate.rb,
|
|
228
|
+
* lib/ttk/strategies/RUnit.rb, lib/ttk/strategies/SignalCmd.rb,
|
|
229
|
+
* lib/ttk/strategies/Strategy.rb, lib/ttk/strategies/Cmd.rb,
|
|
230
|
+
* lib/ttk/strategies/Checkout.rb, lib/ttk/strategies/IOBased.rb,
|
|
231
|
+
* lib/ttk/strategies/Abort.rb,
|
|
232
|
+
* lib/ttk/strategies/PackageCollection.rb,
|
|
233
|
+
* lib/ttk/strategies/Sleep.rb, lib/ttk/strategies/Pool.rb,
|
|
234
|
+
* lib/ttk/strategies/Import.rb, lib/ttk/monitors/Client.rb,
|
|
235
|
+
* lib/ttk/monitors/Server.rb, lib/ttk/monitors/Monitor.rb,
|
|
236
|
+
* lib/ttk/symtbl.rb, lib/ttk.rb, lib/ttkd.rb, COPYING, bin/ttkm,
|
|
237
|
+
* bin/ttk, bin/getopts/ttkm.rb, bin/getopts/ttk.rb,
|
|
238
|
+
* bin/getopts/ttkd.rb, bin/ttkd, NORM: change property: remove
|
|
239
|
+
svn:keyword LastChangedBy.
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
2005-04-13 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
243
|
+
|
|
244
|
+
* test/examples/README: Forgotten word.
|
|
245
|
+
* VERSION: This is now a template ERB.
|
|
246
|
+
* GUIDELINES, README, lib/ttk/strategies/RemoteCmd.rb,
|
|
247
|
+
* lib/ttk/strategies/JUnit.rb, lib/ttk/strategies/RUnit.rb, NEWS: Typo.
|
|
248
|
+
* bin/getopts/ttk.rb: Print the version message based on the VERSION
|
|
249
|
+
template and the REVISION and the DATE files. Add bug report
|
|
250
|
+
instructions at the bottom of the help message.
|
|
251
|
+
|
|
252
|
+
2005-04-13 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
253
|
+
|
|
254
|
+
* test/test: Remove.
|
|
255
|
+
|
|
256
|
+
2005-04-13 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
257
|
+
|
|
258
|
+
* test/ttk/Test/TestTFail.yml: Remove.
|
|
259
|
+
* test/ttk/Test/TestTTest.yml: Remove.
|
|
260
|
+
* test/ttk/Test/TestTRUnit.yml: Remove.
|
|
261
|
+
* test/ttk/Test/TestTAssert.yml: Remove.
|
|
262
|
+
* test/ttk/Test/TestTRUnit: Remove.
|
|
263
|
+
* test/ttk/Test/TestTRUnit/simple.rb: Remove.
|
|
264
|
+
* test/ttk/Test/TestTCmd.yml: Remove.
|
|
265
|
+
* test/ttk/Test/TestTPass.yml: Remove.
|
|
266
|
+
* test/ttk/Test/TestTSuite.yml: Remove.
|
|
267
|
+
* test/ttk/Test/TestTBall: Remove.
|
|
268
|
+
* test/ttk/Test/TestTBall/hello.tar.gz: Remove.
|
|
269
|
+
* test/ttk/Test/TestTBall.yml: Remove.
|
|
270
|
+
* test/ttk/Tools/SafeEvalTest.rb: Remove.
|
|
271
|
+
* test/ttk/Tools/testsuite.yml: Remove.
|
|
272
|
+
* test/ttk/Tools/ArrayDiffTest.rb: Remove.
|
|
273
|
+
* test/ttk/Tools/HashDiffTest.rb: Remove.
|
|
274
|
+
* test/all/ref/out/stud.yml: Remove.
|
|
275
|
+
* test/all/ref/out/glob_stud.yml: Remove.
|
|
276
|
+
* test/all/ref/out/glob.yml: Remove.
|
|
277
|
+
* test/all/ref/out/no_suite.yml: Remove.
|
|
278
|
+
* test/all/ref/out/timeout.yml: Remove.
|
|
279
|
+
* test/all/ref/out/fatal.yml: Remove.
|
|
280
|
+
* test/all/ref/out/pipeline-timeout.yml: Remove.
|
|
281
|
+
* test/all/ref/out/sub.yml: Remove.
|
|
282
|
+
* test/all/ref/out/block.yml: Remove.
|
|
283
|
+
* test/all/ref/out/suite_timeout.yml: Remove.
|
|
284
|
+
* test/all/ref/out/mini-lib.yml: Remove.
|
|
285
|
+
* test/all/ref/out/remote_dispatcher.yml: Remove.
|
|
286
|
+
* test/all/ref/out/author.yml: Remove.
|
|
287
|
+
* test/all/ref/out/pool_stud.yml: Remove.
|
|
288
|
+
* test/all/ref/out/exit.yml: Remove.
|
|
289
|
+
* test/all/ref/out/pool.yml: Remove.
|
|
290
|
+
* test/all/ref/out/wc.yml: Remove.
|
|
291
|
+
* test/all/ref/out/ball.yml: Remove.
|
|
292
|
+
* test/all/ref/out/env_cmd.yml: Remove.
|
|
293
|
+
* test/all/ref/out/remote_cmd.yml: Remove.
|
|
294
|
+
* test/all/ref/err/stud.yml: Remove.
|
|
295
|
+
* test/all/ref/err/glob_stud.yml: Remove.
|
|
296
|
+
* test/all/ref/err/glob.yml: Remove.
|
|
297
|
+
* test/all/ref/err/no_suite.yml: Remove.
|
|
298
|
+
* test/all/ref/err/timeout.yml: Remove.
|
|
299
|
+
* test/all/ref/err/fatal.yml: Remove.
|
|
300
|
+
* test/all/ref/err/sub.yml: Remove.
|
|
301
|
+
* test/all/ref/err/pipeline-timeout.yml: Remove.
|
|
302
|
+
* test/all/ref/err/block.yml: Remove.
|
|
303
|
+
* test/all/ref/err/suite_timeout.yml: Remove.
|
|
304
|
+
* test/all/ref/err/mini-lib.yml: Remove.
|
|
305
|
+
* test/all/ref/err/remote_dispatcher.yml: Remove.
|
|
306
|
+
* test/all/ref/err/author.yml: Remove.
|
|
307
|
+
* test/all/ref/err/pool_stud.yml: Remove.
|
|
308
|
+
* test/all/ref/err/exit.yml: Remove.
|
|
309
|
+
* test/all/ref/err/pool.yml: Remove.
|
|
310
|
+
* test/all/ref/err/wc.yml: Remove.
|
|
311
|
+
* test/all/ref/err/ball.yml: Remove.
|
|
312
|
+
* test/all/ref/err/env_cmd.yml: Remove.
|
|
313
|
+
* test/all/ref/err/remote_cmd.yml: Remove.
|
|
314
|
+
* test/all.yml: Remove.
|
|
315
|
+
|
|
316
|
+
2005-04-12 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
317
|
+
|
|
318
|
+
This strategy was written by Vincent Cuissard.
|
|
319
|
+
|
|
320
|
+
* lib/ttk/strategies/SignalCmd.rb: New.
|
|
321
|
+
* test/ttk-minimal/signal_cmd.yml: New.
|
|
322
|
+
* NEWS: Add to command based strategies.
|
|
323
|
+
|
|
324
|
+
2005-04-12 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
325
|
+
|
|
326
|
+
* lib/ttk/strategies/Strategy.rb: Use fail instead of skip when a
|
|
327
|
+
post_assertion fails.
|
|
328
|
+
|
|
329
|
+
2005-04-12 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
330
|
+
|
|
331
|
+
* lib/ttk/filters/Saver.rb: Fix the freshliy added new case.
|
|
332
|
+
|
|
333
|
+
* lib/ttk/logger/to_ttk_log.rb: Remove Array#to_ttk_log which doesn't
|
|
334
|
+
make sense, fix and factorize OHash#to_ttk_log, and Hash#to_ttk_log.
|
|
335
|
+
* test/runit/logger_test.rb: Add a test, and fix an output ref.
|
|
336
|
+
|
|
337
|
+
* lib/ttk/strategies/Strategy.rb: Add a real support for
|
|
338
|
+
{pre,post}_assertion.
|
|
339
|
+
* test/ttk-minimal/base.yml: Add 8 tests for pre and post assertions.
|
|
340
|
+
* test/examples/students/pool_stud.yml: Make it skips, and add a FIXME.
|
|
341
|
+
|
|
342
|
+
2005-04-12 Nicolas Despr�s <nicolas.despres@lrde.epita.fr>
|
|
343
|
+
|
|
344
|
+
* lib/ttk/strategies/RemoteCmd.rb, lib/ttk/strategies/Extract.rb,
|
|
345
|
+
* lib/ttk/strategies/Ball.rb, lib/ttk/strategies/JUnit.rb: .
|
|
346
|
+
* lib/ttk.rb, test/examples/README: Documentation.
|
|
347
|
+
* Rakefile: Do not use vcs any more.
|
|
348
|
+
* AUTHORS: Delete some trailing blank line.
|
|
349
|
+
* vcs/ttk.rb: Touch REVISION and DATE.
|
|
350
|
+
* README: Some fixes.
|
|
351
|
+
* NEWS: New.
|
|
352
|
+
* DATE: New. The date of the last update in the svn repository.
|
|
353
|
+
* REVISION: New. The revision number of the svn repository.
|
|
354
|
+
|
|
355
|
+
2005-04-12 Nicolas Despr�s <nicolas.despres@lrde.epita.fr>
|
|
356
|
+
|
|
357
|
+
* GUIDELINES: New.
|
|
358
|
+
|
|
359
|
+
2005-04-12 Nicolas Despr�s <nicolas.despres@lrde.epita.fr>
|
|
360
|
+
|
|
361
|
+
* test/examples/README: Explains all TTK's examples.
|
|
362
|
+
* Rakefile: Add test/examples/README to the doc and the strategy Glob.
|
|
363
|
+
* README: Tyop.
|
|
364
|
+
* lib/ttk/strategies/Glob.rb: A bit documented.
|
|
365
|
+
* COPYING: Explain the legal notice for ruby_ex.
|
|
366
|
+
|
|
367
|
+
2005-04-12 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
368
|
+
|
|
369
|
+
* test/runit/logger/verbosity_test.rb,
|
|
370
|
+
* test/runit/logger/section_node_test.rb,
|
|
371
|
+
* test/runit/logger/severity_test.rb,
|
|
372
|
+
* test/runit/logger_test.rb,
|
|
373
|
+
* test/runit/fetchers/fetchers_test.rb,
|
|
374
|
+
* test/runit/loaders/OYaml_test.rb,
|
|
375
|
+
* test/runit/strategies/Strategy/assert_eval_test.rb,
|
|
376
|
+
* test/ttk/Test/TestTRUnit/simple.rb,
|
|
377
|
+
* test/ttk/Tools/SafeEvalTest.rb,
|
|
378
|
+
* test/ttk/Tools/ArrayDiffTest.rb,
|
|
379
|
+
* test/ttk/Tools/HashDiffTest.rb,
|
|
380
|
+
* AUTHORS,
|
|
381
|
+
* misc/ttk-line-count.rb,
|
|
382
|
+
* lib/ttk/dumpers/TracesXml.rb,
|
|
383
|
+
* lib/ttk/logger/verbosity.rb,
|
|
384
|
+
* lib/ttk/logger/section_node.rb,
|
|
385
|
+
* lib/ttk/logger/severity.rb,
|
|
386
|
+
* lib/ttk/services/MonitorServer.rb,
|
|
387
|
+
* lib/ttk/services/FetcherClient.rb,
|
|
388
|
+
* lib/ttk/services/TesterSlave.rb,
|
|
389
|
+
* lib/ttk/services/TesterMaster.rb,
|
|
390
|
+
* lib/ttk/services/TesterClient.rb,
|
|
391
|
+
* lib/ttk/services/MonitorClient.rb,
|
|
392
|
+
* lib/ttk/services/DRbService/sub_testable.rb,
|
|
393
|
+
* lib/ttk/services/FetcherServer.rb,
|
|
394
|
+
* lib/ttk/services/DRbService.rb,
|
|
395
|
+
* lib/ttk/daemons/daemon/logger.rb,
|
|
396
|
+
* lib/ttk/daemons/Daemon.rb,
|
|
397
|
+
* lib/ttk/daemons/Slave.rb,
|
|
398
|
+
* lib/ttk/daemons/Master.rb,
|
|
399
|
+
* lib/ttk/testers/tester/remote_status.rb,
|
|
400
|
+
* lib/ttk/testers/tester/notifier.rb,
|
|
401
|
+
* lib/ttk/testers/tester/running_task.rb,
|
|
402
|
+
* lib/ttk/testers/tester/config.rb,
|
|
403
|
+
* lib/ttk/testers/tester/query_node.rb,
|
|
404
|
+
* lib/ttk/testers/tester/score.rb,
|
|
405
|
+
* lib/ttk/testers/Tester.rb,
|
|
406
|
+
* lib/ttk/testers/Slave.rb,
|
|
407
|
+
* lib/ttk/testers/Master.rb,
|
|
408
|
+
* lib/ttk/Tools/SafeEval.rb,
|
|
409
|
+
* lib/ttk/fetchers/Client.rb,
|
|
410
|
+
* lib/ttk/fetchers/server/sender.rb,
|
|
411
|
+
* lib/ttk/fetchers/Server.rb,
|
|
412
|
+
* lib/ttk/fetchers/client/receiver.rb,
|
|
413
|
+
* lib/ttk/logger_factory.rb,
|
|
414
|
+
* lib/ttk/strategies/Test.rb,
|
|
415
|
+
* lib/ttk/strategies/Fetcher.rb,
|
|
416
|
+
* lib/ttk/strategies/DistDelegate.rb,
|
|
417
|
+
* lib/ttk/strategies/Strategy/assert_eval.rb,
|
|
418
|
+
* lib/ttk/strategies/Tester.rb,
|
|
419
|
+
* lib/ttk/strategies/Stub.rb,
|
|
420
|
+
* lib/ttk/strategies/Distribute.rb,
|
|
421
|
+
* lib/ttk/strategies/DistStrategy.rb,
|
|
422
|
+
* lib/ttk/strategies/JUnit.rb,
|
|
423
|
+
* lib/ttk/strategies/Fetch.rb,
|
|
424
|
+
* lib/ttk/strategies/DistDuplicate.rb,
|
|
425
|
+
* lib/ttk/strategies/RUnit.rb,
|
|
426
|
+
* lib/ttk/strategies/Abort.rb,
|
|
427
|
+
* lib/ttk/strategies/Sleep.rb,
|
|
428
|
+
* lib/ttk/strategies/Pool.rb,
|
|
429
|
+
* lib/ttk/monitors/Client.rb,
|
|
430
|
+
* lib/ttk/monitors/Server.rb,
|
|
431
|
+
* lib/ttk/monitors/Monitor.rb,
|
|
432
|
+
* lib/ttkd.rb,
|
|
433
|
+
* bin/ttkm,
|
|
434
|
+
* bin/ttkd: Update emails in headers.
|
|
435
|
+
|
|
436
|
+
2005-04-12 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
437
|
+
|
|
438
|
+
* lib/ttk/strategies/Strategy.rb, bin/getopts/ttk.rb: Update headers.
|
|
439
|
+
|
|
440
|
+
2005-04-12 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
441
|
+
|
|
442
|
+
* test/runit: Changed property.
|
|
443
|
+
* test/runit/dumpers/xml_test.rb: New.
|
|
444
|
+
* test/runit/dumpers/yaml_test.rb: New.
|
|
445
|
+
* test/runit/logger_test.rb: Update to new notification scheme.
|
|
446
|
+
* test/ttk-minimal/base.yml: Test Cmd with an unexisting command.
|
|
447
|
+
|
|
448
|
+
* lib/ttk/logger.rb:
|
|
449
|
+
Improve new_node, and always dup the path before send it.
|
|
450
|
+
* lib/ttk/logger/to_ttk_log.rb:
|
|
451
|
+
Add Array#to_ttk_log, and remove useless tests.
|
|
452
|
+
|
|
453
|
+
* lib/ttk/dumpers/Dumper.rb: Make a real abstraction.
|
|
454
|
+
* lib/ttk/dumpers/Xml.rb:
|
|
455
|
+
Big clean up, add modifications in the Xml, output.
|
|
456
|
+
* lib/ttk/dumpers/TracesXml.rb: Update.
|
|
457
|
+
* lib/ttk/dumpers/Yaml.rb: Little clean up.
|
|
458
|
+
|
|
459
|
+
* lib/ttk/filters/Saver.rb: Handle a missed case.
|
|
460
|
+
|
|
461
|
+
* lib/ttk/strategies/Strategy.rb: Add a comment.
|
|
462
|
+
|
|
463
|
+
* template: Changed property.
|
|
464
|
+
* template/new_dumper.rb: New.
|
|
465
|
+
|
|
466
|
+
2005-04-12 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
467
|
+
|
|
468
|
+
* Rakefile: Add template/README.
|
|
469
|
+
|
|
470
|
+
* misc/gendoc.rb: Remove.
|
|
471
|
+
* misc/header: Remove.
|
|
472
|
+
|
|
473
|
+
* misc/ttk-line-count.rb, misc/expandtab.rb, lib/ttk/dumpers/Notif.rb,
|
|
474
|
+
* lib/ttk/dumpers/Xml.rb, lib/ttk/dumpers/TracesXml.rb,
|
|
475
|
+
* lib/ttk/dumpers/Yaml.rb, lib/ttk/dumpers/Dumper.rb,
|
|
476
|
+
* lib/ttk/logger/to_ttk_log.rb, lib/ttk/logger/verbosity.rb,
|
|
477
|
+
* lib/ttk/logger/section_node.rb, lib/ttk/logger/severity.rb,
|
|
478
|
+
* lib/ttk/services/MonitorServer.rb, lib/ttk/services/FetcherClient.rb,
|
|
479
|
+
* lib/ttk/services/TesterSlave.rb, lib/ttk/services/TesterMaster.rb,
|
|
480
|
+
* lib/ttk/services/TesterClient.rb, lib/ttk/services/MonitorClient.rb,
|
|
481
|
+
* lib/ttk/services/FetcherServer.rb, lib/ttk/services/DRbService.rb,
|
|
482
|
+
* lib/ttk/status.rb, lib/ttk/daemons/daemon/logger.rb,
|
|
483
|
+
* lib/ttk/daemons/Daemon.rb, lib/ttk/daemons/Slave.rb,
|
|
484
|
+
* lib/ttk/daemons/Master.rb, lib/ttk/loaders/YamlOld.rb,
|
|
485
|
+
* lib/ttk/loaders/OYaml.rb, lib/ttk/loaders/Yaml.rb,
|
|
486
|
+
* lib/ttk/loaders/Loader.rb, lib/ttk/testers/tester/remote_status.rb,
|
|
487
|
+
* lib/ttk/testers/Tester.rb, lib/ttk/testers/Slave.rb,
|
|
488
|
+
* lib/ttk/testers/Master.rb, lib/ttk/Tools/HostDispatcher.rb,
|
|
489
|
+
* lib/ttk/Tools/io/dispatch.rb, lib/ttk/Tools/io/ext.rb,
|
|
490
|
+
* lib/ttk/Tools/io/delegator.rb, lib/ttk/Tools/io/filters.rb,
|
|
491
|
+
* lib/ttk/Tools/SafeEval.rb, lib/ttk/Tools/cut_output.rb,
|
|
492
|
+
* lib/ttk/fetchers/Client.rb, lib/ttk/fetchers/server/sender.rb,
|
|
493
|
+
* lib/ttk/fetchers/Server.rb, lib/ttk/fetchers/client/receiver.rb,
|
|
494
|
+
* lib/ttk/logger_factory.rb, lib/ttk/filters/Saver.rb,
|
|
495
|
+
* lib/ttk/filters/BasicLogger.rb, lib/ttk/filters/Filter.rb,
|
|
496
|
+
* lib/ttk/weights/WExpr.rb, lib/ttk/weights/Weight.rb,
|
|
497
|
+
* lib/ttk/weights/WMin.rb, lib/ttk/weights/WFloat.rb,
|
|
498
|
+
* lib/ttk/monitors/Client.rb, lib/ttk/monitors/Server.rb,
|
|
499
|
+
* lib/ttk/monitors/Monitor.rb, lib/ttk/strategies/Make.rb,
|
|
500
|
+
* lib/ttk/strategies/Bootstrap.rb, lib/ttk/strategies/SubCmd.rb,
|
|
501
|
+
* lib/ttk/strategies/RemoteCmd.rb, lib/ttk/strategies/Test.rb,
|
|
502
|
+
* lib/ttk/strategies/Fetcher.rb, lib/ttk/strategies/Glob.rb,
|
|
503
|
+
* lib/ttk/strategies/Authors.rb, lib/ttk/strategies/SqlQuery.rb,
|
|
504
|
+
* lib/ttk/strategies/Compile.rb, lib/ttk/strategies/Package.rb,
|
|
505
|
+
* lib/ttk/strategies/Composite.rb, lib/ttk/strategies/Pass.rb,
|
|
506
|
+
* lib/ttk/strategies/Tester.rb, lib/ttk/strategies/Extract.rb,
|
|
507
|
+
* lib/ttk/strategies/Ball.rb, lib/ttk/strategies/Fail.rb,
|
|
508
|
+
* lib/ttk/strategies/Streams/Stream.rb, lib/ttk/strategies/Stub.rb,
|
|
509
|
+
* lib/ttk/strategies/Distribute.rb, lib/ttk/strategies/Proxy.rb,
|
|
510
|
+
* lib/ttk/strategies/Configure.rb, lib/ttk/strategies/Clean.rb,
|
|
511
|
+
* lib/ttk/strategies/KillAll.rb, lib/ttk/strategies/DistStrategy.rb,
|
|
512
|
+
* lib/ttk/strategies/Suite.rb, lib/ttk/strategies/JUnit.rb,
|
|
513
|
+
* lib/ttk/strategies/Error.rb, lib/ttk/strategies/Fetch.rb,
|
|
514
|
+
* lib/ttk/strategies/Block.rb, lib/ttk/strategies/Collection.rb,
|
|
515
|
+
* lib/ttk/strategies/ProbabilityThreshold.rb,
|
|
516
|
+
* lib/ttk/strategies/CmdBase.rb, lib/ttk/strategies/DistDuplicate.rb,
|
|
517
|
+
* lib/ttk/strategies/RUnit.rb, lib/ttk/strategies/Strategy.rb,
|
|
518
|
+
* lib/ttk/strategies/Cmd.rb, lib/ttk/strategies/Checkout.rb,
|
|
519
|
+
* lib/ttk/strategies/IOBased.rb, lib/ttk/strategies/Abort.rb,
|
|
520
|
+
* lib/ttk/strategies/PackageCollection.rb, lib/ttk/strategies/Sleep.rb,
|
|
521
|
+
* lib/ttk/strategies/Pool.rb, lib/ttk/strategies/Import.rb,
|
|
522
|
+
* lib/ttk/symtbl.rb, lib/ttk.rb, lib/ttkd.rb, bin/ttkm,
|
|
523
|
+
* bin/ttk, bin/getopts/ttkm.rb, bin/getopts/ttk.rb,
|
|
524
|
+
* lib/ttk/strategies/Streams/Diff.rb,
|
|
525
|
+
* lib/ttk/strategies/DistDelegate.rb,
|
|
526
|
+
* lib/ttk/services/DRbService/sub_testable.rb,
|
|
527
|
+
* lib/ttk/logger/path.rb, lib/ttk/logger.rb,
|
|
528
|
+
* lib/ttk/testers/tester/notifier.rb,
|
|
529
|
+
* lib/ttk/testers/tester/running_task.rb,
|
|
530
|
+
* lib/ttk/testers/tester/config.rb,
|
|
531
|
+
* lib/ttk/testers/tester/query_node.rb,
|
|
532
|
+
* lib/ttk/testers/tester/score.rb,
|
|
533
|
+
* lib/ttk/strategies/Strategy/assert_eval.rb,
|
|
534
|
+
* bin/getopts/ttkd.rb, bin/ttkd: Update headers.
|
|
535
|
+
|
|
536
|
+
2005-04-12 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
537
|
+
|
|
538
|
+
* template/README: New.
|
|
539
|
+
* misc/template.rb: New. A little script which run ERB.
|
|
540
|
+
* template/new_strategy.rb: Update to new template system.
|
|
541
|
+
* template/new_header.rb: New template.
|
|
542
|
+
* README: Add a link to template/README.
|
|
543
|
+
|
|
544
|
+
2005-04-12 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
545
|
+
|
|
546
|
+
* misc/header.rb: New. Allow to regenerate headers.
|
|
547
|
+
|
|
548
|
+
2005-04-12 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
549
|
+
|
|
550
|
+
* lib/ttk/strategies/Strategy.rb: Use :pathname instead of :path which
|
|
551
|
+
is already used in Package.
|
|
552
|
+
|
|
553
|
+
2005-04-12 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
554
|
+
|
|
555
|
+
* test/examples/students/stud.yml,
|
|
556
|
+
* test/examples/students/mini-lib.yml,
|
|
557
|
+
* test/examples/students/glob_stud.yml,
|
|
558
|
+
* test/examples/students/pool_stud.yml,
|
|
559
|
+
* test/examples/students/ball.yml:
|
|
560
|
+
Use Package instead of Ball, and update.
|
|
561
|
+
|
|
562
|
+
2005-04-12 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
563
|
+
|
|
564
|
+
* test/examples/README: New. Add the `Introduction' part of this file.
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
2005-04-12 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
568
|
+
|
|
569
|
+
* test/runit/strategies/Strategy/assert_eval_test.rb: Use
|
|
570
|
+
TempPath#clean.
|
|
571
|
+
|
|
572
|
+
2005-04-12 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
573
|
+
|
|
574
|
+
* lib/ttk/strategies/RUnit.rb: Give a real example of a set of unit
|
|
575
|
+
test file embedded in a TTK test suite automatticaly.
|
|
576
|
+
|
|
577
|
+
2005-04-12 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
578
|
+
|
|
579
|
+
* README: Fix english grammar mistakes. Specially forgotten 's' for
|
|
580
|
+
plural form.
|
|
581
|
+
|
|
582
|
+
2005-04-12 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
583
|
+
|
|
584
|
+
* lib/ttk/strategies/CmdBase.rb: Make it ruby 1.8.1 compliant.
|
|
585
|
+
|
|
586
|
+
2005-04-11 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
587
|
+
|
|
588
|
+
* test/runit/strategies/Strategy/assert_eval_test.rb: Clean up, and
|
|
589
|
+
comment some tests which doesn't work with ruby 1.9.
|
|
590
|
+
|
|
591
|
+
2005-04-11 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
592
|
+
|
|
593
|
+
* README: Fix Rakefile description.
|
|
594
|
+
|
|
595
|
+
2005-04-11 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
596
|
+
|
|
597
|
+
* README: Remove bold markup in for the Repository tree description
|
|
598
|
+
because it doesn't work properly with a label with a slash inside.
|
|
599
|
+
Remove [lib/ttk] description. Add [doc/html] description
|
|
600
|
+
|
|
601
|
+
2005-04-11 Nicolas Despr�s <nicolas.despres@lrde.epita.fr>
|
|
602
|
+
|
|
603
|
+
* Rakefile: Upgrade the doc target.
|
|
604
|
+
* README: Typo.
|
|
605
|
+
* lib/ttk/status.rb: Do not convert the object to a string this the
|
|
606
|
+
logger manage every object type properly.
|
|
607
|
+
* lib/ttk/strategies/RUnit.rb: Documentation.
|
|
608
|
+
* lib/ttk/strategies/Strategy.rb: Remove format_exception_message since
|
|
609
|
+
the logger do that.
|
|
610
|
+
* bin/getopts/ttk.rb: Check the type of the -v option argument.
|
|
611
|
+
|
|
612
|
+
2005-04-11 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
613
|
+
|
|
614
|
+
* COPYING: Change the layout.
|
|
615
|
+
|
|
616
|
+
2005-04-11 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
617
|
+
|
|
618
|
+
* lib/ttk/strategies/CmdBase.rb: Handle exceptions raised by exec.
|
|
619
|
+
|
|
620
|
+
2005-04-11 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
621
|
+
|
|
622
|
+
* bin/getopts/ttk.rb: Add the --gen-strategies-hierarchy option.
|
|
623
|
+
|
|
624
|
+
2005-04-11 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
625
|
+
|
|
626
|
+
* lib/ttk/testers/Slave.rb, lib/ttk/testers/Master.rb: No longer assign
|
|
627
|
+
the sub_testers key in the symtbl since it is available as a public
|
|
628
|
+
method.
|
|
629
|
+
* lib/ttk/testers/Master.rb: Make sub_testers a public method.
|
|
630
|
+
* lib/ttk/strategies/DistDelegate.rb: No longer get the sub_testers
|
|
631
|
+
in the symtbl, but get them from the tester.
|
|
632
|
+
|
|
633
|
+
2005-04-11 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
634
|
+
|
|
635
|
+
* misc/gendoc.rb: Add more files and change the main files. Put some
|
|
636
|
+
temporary comments to avoid a 10 minutes long documentation generation.
|
|
637
|
+
* README: Use RDoc markup. Add more section.
|
|
638
|
+
* lib/ttk/dumpers/Dumper.rb, lib/ttk/loaders/Loader.rb,
|
|
639
|
+
* lib/ttk/filters/Filter.rb, lib/ttk/strategies/RUnit.rb,
|
|
640
|
+
* lib/ttk/strategies/Strategy.rb, lib/ttk/strategies/Cmd.rb,
|
|
641
|
+
* lib/ttk/weights/Weight.rb, lib/ttk.rb: Add FIXME for the
|
|
642
|
+
documentation.
|
|
643
|
+
|
|
644
|
+
2005-04-11 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
645
|
+
|
|
646
|
+
* bin/getopts/ttk.rb: Fix a bug with -d options. Now you can use it
|
|
647
|
+
without argument to see the list of the logger severity level.
|
|
648
|
+
|
|
649
|
+
2005-04-11 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
650
|
+
|
|
651
|
+
* TODO: Use the RDoc markup style instead of the emacs outline one to
|
|
652
|
+
include it in the TTK's documentation.
|
|
653
|
+
|
|
654
|
+
2005-04-11 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
655
|
+
|
|
656
|
+
* COPYRIGHT: Rename to ...
|
|
657
|
+
* COPYING: ... that, and upgraded.
|
|
658
|
+
* LGPL: New. Describe the terms of the LGPL license.
|
|
659
|
+
|
|
660
|
+
|
|
661
|
+
2005-04-11 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
662
|
+
|
|
663
|
+
* VERSION: Add copyright informations and change the release name.
|
|
664
|
+
|
|
665
|
+
2005-04-11 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
666
|
+
|
|
667
|
+
* AUTHORS: Full detailed description.
|
|
668
|
+
|
|
669
|
+
2005-04-09 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
670
|
+
|
|
671
|
+
* bin/getopts/ttk.rb: Refactorize hierachy pretty printer.
|
|
672
|
+
|
|
673
|
+
2005-04-09 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
674
|
+
|
|
675
|
+
* lib/ttk/strategies/Fetcher.rb, lib/ttk/strategies/Fetch.rb: Requires
|
|
676
|
+
'ttkd' since this strategy may be used outside a Tester strategy.
|
|
677
|
+
|
|
678
|
+
2005-04-09 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
679
|
+
|
|
680
|
+
* test/ttk-dist/dist-abort.yml: New. Test the abort feature for remote
|
|
681
|
+
strategies.
|
|
682
|
+
* test/ttk-dist-suite.yml: Include the dist-abort.yml test suite.
|
|
683
|
+
* lib/ttk/services/DRbService/sub_testable.rb: , changed property.
|
|
684
|
+
* lib/ttk/testers/tester/running_task.rb: New. Keep track of the
|
|
685
|
+
running tests on a tester.
|
|
686
|
+
* lib/ttk/testers/Tester.rb: Use RunningTask and provides an `abort'
|
|
687
|
+
request.
|
|
688
|
+
* lib/ttk/strategies/DistStrategy.rb: Handle `abort_hook' to abort
|
|
689
|
+
the remote running test.
|
|
690
|
+
|
|
691
|
+
2005-04-09 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
692
|
+
|
|
693
|
+
* lib/ttk/logger_factory.rb: New. Handle ttk's logger property and
|
|
694
|
+
allow to create new logger.
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
2005-04-09 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
698
|
+
|
|
699
|
+
* lib/ttk/services/DRbService: New. Contains classes and modules
|
|
700
|
+
declared in TTK::Services::DRbService namespace.
|
|
701
|
+
* lib/ttk/services/DRbService/sub_testable.rb: New. Factorizes the
|
|
702
|
+
`sub_testers' code management.
|
|
703
|
+
* lib/ttk/services/TesterMaster.rb: Includes SubTestable.
|
|
704
|
+
* lib/ttk/services/TesterClient.rb: Includes SubTestable.
|
|
705
|
+
* lib/ttk/services/DRbService.rb: Require `sub_testable'. `observable'
|
|
706
|
+
requirement moves to ttkd.
|
|
707
|
+
* lib/ttk/testers/tester/notifier.rb: `observable' requirement moves to
|
|
708
|
+
ttkd.
|
|
709
|
+
* lib/ttk/strategies/Tester.rb: Use the TesterClient service.
|
|
710
|
+
* lib/ttkd.rb: Requires 'observable'.
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
2005-04-09 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
714
|
+
|
|
715
|
+
* lib/ttk/testers/Tester.rb: Create the logger using the logger
|
|
716
|
+
factory.
|
|
717
|
+
* lib/ttk/strategies/DistStrategy.rb: Do not give the symtbl class in
|
|
718
|
+
argument to run_strategy since it is already present in the symtbl
|
|
719
|
+
itself.
|
|
720
|
+
|
|
721
|
+
2005-04-09 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
722
|
+
|
|
723
|
+
* lib/ttk/logger/verbosity.rb: Keep track of the higher verbosity
|
|
724
|
+
level.
|
|
725
|
+
* test/runit/logger/verbosity_test.rb: Test the
|
|
726
|
+
"higher verbosity level" features.
|
|
727
|
+
|
|
728
|
+
* lib/ttk/logger.rb: Write a setter that check the argument validity
|
|
729
|
+
for the severity_level attribute. `section_tree' is no longer a read
|
|
730
|
+
only attributes.
|
|
731
|
+
* test/runit/logger_test.rb: Test the severity_level setter.
|
|
732
|
+
|
|
733
|
+
* lib/ttk.rb: Require the logger factory.
|
|
734
|
+
* bin/ttk: Create the logger factory according to the command line
|
|
735
|
+
options.
|
|
736
|
+
* bin/getopts/ttk.rb: Add the verbosity level option (-v) and the
|
|
737
|
+
logger section option (-s).
|
|
738
|
+
|
|
739
|
+
2005-04-09 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
740
|
+
|
|
741
|
+
* lib/ttk/dumpers/TracesXml.rb: Remove requires and add a FIXME.
|
|
742
|
+
* lib/ttk/logger.rb: Remove a FIXME.
|
|
743
|
+
* bin/getopts/ttk.rb: Use hierarchy and pp_hierarchy to pretty print
|
|
744
|
+
the ttk's class hierarchy.
|
|
745
|
+
|
|
746
|
+
2005-04-07 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
747
|
+
|
|
748
|
+
* test/ttk-dist-suite.yml: Adapt the new debug option format.
|
|
749
|
+
* lib/ttk/dumpers/TracesXml.rb, lib/ttk/testers/Tester.rb,
|
|
750
|
+
* lib/ttk/strategies/JUnit.rb: Add a FIXME.
|
|
751
|
+
* lib/ttk/logger/to_ttk_log.rb: Do not use LOG any more.
|
|
752
|
+
* lib/ttk/logger/severity.rb: Add an accessor to '@@labels'.
|
|
753
|
+
* lib/ttk/status.rb: Do not format the exception here since the Status
|
|
754
|
+
doesn't know the log severity level. This is now done in
|
|
755
|
+
Strategy#format_exception_message.
|
|
756
|
+
* : .
|
|
757
|
+
* lib/ttk/loaders/YamlOld.rb, lib/ttk/loaders/OYaml.rb,
|
|
758
|
+
* lib/ttk/loaders/Yaml.rb, lib/ttk/loaders/Loader.rb: Remove log
|
|
759
|
+
messages.
|
|
760
|
+
* lib/ttk/filters/BasicLogger.rb: Add a FIXME and comment deprecated
|
|
761
|
+
code.
|
|
762
|
+
* lib/ttk/strategies/Composite.rb: Remove commented code.
|
|
763
|
+
* lib/ttk/strategies/Collection.rb, lib/ttk/strategies/CmdBase.rb,
|
|
764
|
+
* lib/ttk/strategies/RUnit.rb: Use
|
|
765
|
+
the new logger.
|
|
766
|
+
* lib/ttk/strategies/Strategy.rb: Add `format_exception_message' which
|
|
767
|
+
pretty print exception with a long format instead of a short if the
|
|
768
|
+
log severity level is less thant INFO.
|
|
769
|
+
* lib/ttk.rb: Remove LOG initialization.
|
|
770
|
+
* bin/ttkm, bin/ttkd: No more $debug.
|
|
771
|
+
* bin/ttk: No more $debug and initialize the logger according to the
|
|
772
|
+
option.
|
|
773
|
+
* bin/getopts/ttk.rb: Adapt the `-d' option to the new logger. Use name
|
|
774
|
+
instead of number.
|
|
775
|
+
|
|
776
|
+
2005-04-06 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
777
|
+
|
|
778
|
+
* test/runit/logger_test.rb: Test the sugar features.
|
|
779
|
+
* lib/ttk/logger.rb: Manage sugar via method_missing.
|
|
780
|
+
* lib/ttk/strategies/DistDelegate.rb: Call `super' in `prologue_test'.
|
|
781
|
+
* lib/ttk/strategies/Tester.rb: Create the sub test at the end of the
|
|
782
|
+
`prologue'.
|
|
783
|
+
|
|
784
|
+
2005-04-06 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
785
|
+
|
|
786
|
+
* lib/ttk/testers/tester/remote_status.rb,
|
|
787
|
+
* lib/ttk/testers/tester/score.rb,
|
|
788
|
+
* lib/ttk/strategies/Distribute.rb: , changed property.
|
|
789
|
+
* lib/ttk/strategies/DistDelegate.rb, lib/ttk/strategies/Tester.rb,
|
|
790
|
+
* lib/ttk/strategies/Distribute.rb: Inherit from DistStrategy.
|
|
791
|
+
* lib/ttk/strategies/DistStrategy.rb: New. Abstraction of every
|
|
792
|
+
distribution strategy.
|
|
793
|
+
|
|
794
|
+
|
|
795
|
+
2005-04-06 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
796
|
+
|
|
797
|
+
* test/runit/strategies: New. Contains unit test suite of the module
|
|
798
|
+
Strategies.
|
|
799
|
+
* test/runit/strategies/Strategy: New. Contains unit test suite of the
|
|
800
|
+
class implemented in the class Strategy.
|
|
801
|
+
* test/ttk/Tools/AssertEvalTest.rb: Move to ...
|
|
802
|
+
* test/runit/strategies/Strategy/assert_eval_test.rb: ... here, and
|
|
803
|
+
adapt.
|
|
804
|
+
|
|
805
|
+
|
|
806
|
+
2005-04-06 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
807
|
+
|
|
808
|
+
* lib/ttk/Tools/AssertEval.rb: Move to ...
|
|
809
|
+
* lib/ttk/strategies/Strategy/assert_eval.rb: ... here.
|
|
810
|
+
* lib/ttk/strategies/Strategy: New. A directory which contains files
|
|
811
|
+
that declares classes/modules declared in TTK::Strategies::Strategy
|
|
812
|
+
namespace.
|
|
813
|
+
* lib/ttk/strategies/Strategy.rb: Remove FIXME. `check_assertion' and
|
|
814
|
+
`pre_assertion' are protected otherwise there are never called. Require
|
|
815
|
+
'assert_eval'.
|
|
816
|
+
|
|
817
|
+
2005-04-06 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
818
|
+
|
|
819
|
+
* test/ttk-dist/dist-suite.yml, test/ttk-dist/dist-ribute.yml,
|
|
820
|
+
* lib/ttk/strategies/Collection.rb: Add a FIXME.
|
|
821
|
+
* test/ttk-dist-suite.yml: Remove a commented fields.
|
|
822
|
+
* lib/ttk/testers/Tester.rb (run_strategy): Takes the symtbl class and
|
|
823
|
+
the symtbl in arguments.
|
|
824
|
+
* lib/ttk/testers/Slave.rb, lib/ttk/testers/Master.rb: Store
|
|
825
|
+
`sub_testers' information in the symtbl.
|
|
826
|
+
* lib/ttk/strategies/Fetcher.rb: Do not propagate manualy `tester' and
|
|
827
|
+
`sub_testers' attributes any more.
|
|
828
|
+
* lib/ttk/strategies/DistDelegate.rb, lib/ttk/strategies/Tester.rb,
|
|
829
|
+
* lib/ttk/strategies/Distribute.rb: Use the `tester' and
|
|
830
|
+
`sub_testers' in the symtbl. Adapt to the new `run_strategy' prototype.
|
|
831
|
+
* lib/ttk/strategies/Strategy.rb: Store `tester' and `sub_testers' in
|
|
832
|
+
the symtbl instead of in attributes.
|
|
833
|
+
* lib/ttkd.rb: Make the symtbl undumpable.
|
|
834
|
+
|
|
835
|
+
2005-04-05 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
836
|
+
|
|
837
|
+
* lib/ttk/testers/Master.rb: Wrap the tester instead of the all score.
|
|
838
|
+
* lib/ttk/strategies/Distribute.rb: Adapt attribute select description
|
|
839
|
+
to the real meaning.
|
|
840
|
+
|
|
841
|
+
2005-04-05 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
842
|
+
|
|
843
|
+
* test/ttk-dist-suite.yml: Readd Fetcher/Fetch test suite.
|
|
844
|
+
* lib/ttk/strategies/Fetch.rb, lib/ttk/strategies/Fetcher.rb:
|
|
845
|
+
is a Composite and ServiceManager.
|
|
846
|
+
* lib/ttk/strategies/DistDelegate.rb: Dails if it is not within a
|
|
847
|
+
tester.
|
|
848
|
+
* bin/ttkd: Clean temporary files, but it is still not enough.
|
|
849
|
+
|
|
850
|
+
2005-04-05 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
851
|
+
|
|
852
|
+
* test/ttk-dist/dist-ribute.yml: New. Distribute strategy test suite.
|
|
853
|
+
* test/ttk-dist-suite.yml: Include dist-ribute.yml in the test suite.
|
|
854
|
+
* lib/ttk/testers/tester/remote_status.rb: New. Move here from
|
|
855
|
+
Tester.rb
|
|
856
|
+
* lib/ttk/testers/tester/score.rb: New. Score returned by the
|
|
857
|
+
dynamic_select request.
|
|
858
|
+
* lib/ttk/testers/Tester.rb, lib/ttk/testers/Master.rb: Implement
|
|
859
|
+
dynamic_select.
|
|
860
|
+
* lib/ttk/strategies/DistDelegate.rb: Typo.
|
|
861
|
+
* lib/ttk/strategies/Distribute.rb: New. Implement the Distribute
|
|
862
|
+
strategy.
|
|
863
|
+
* lib/ttk/strategies/DistDuplicate.rb: Rename the class name.
|
|
864
|
+
|
|
865
|
+
2005-04-04 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
866
|
+
|
|
867
|
+
* lib/ttk/services/TesterMaster.rb: Give the `sub_testers' attribute
|
|
868
|
+
to the constructor since there isn't any more the getter.
|
|
869
|
+
* lib/ttk/testers/Tester.rb: Remove the default value of `name' in
|
|
870
|
+
initialize to be able to add some arguments after it.
|
|
871
|
+
* lib/ttk/testers/Master.rb: Remove the `sub_testers='. Make
|
|
872
|
+
`sub_testers' protected. Initialize the `sub_testers' in the
|
|
873
|
+
constructor.
|
|
874
|
+
|
|
875
|
+
2005-04-04 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
876
|
+
|
|
877
|
+
* lib/ttk/strategies/Test.rb: Adapt test to fit the new way Composite
|
|
878
|
+
computes the status.
|
|
879
|
+
|
|
880
|
+
2005-04-04 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
881
|
+
|
|
882
|
+
* lib/ttk/symtbl: Remove. There is no module called SymTbl until now.
|
|
883
|
+
* lib/ttk/symtbl/SymTbl.rb: Move to ...
|
|
884
|
+
* lib/ttk/symtbl.rb: ... here, to be homogenous. Remove useless
|
|
885
|
+
`sync_key' features and includes `Mutex_m' instead.
|
|
886
|
+
* lib/ttk.rb: Adapt require.
|
|
887
|
+
|
|
888
|
+
2005-04-04 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
889
|
+
|
|
890
|
+
* test/ttk-dist/dist-delegate.yml: Add a FIXME.
|
|
891
|
+
* test/ttk-dist-suite.yml: Readd almost all the test.
|
|
892
|
+
* lib/ttk/services/TesterMaster.rb: Store the `sub_testers' data of the
|
|
893
|
+
master in the service instead of the front to prohibit public access.
|
|
894
|
+
* lib/ttk/testers/Master.rb: `sub_testers' is no longer a class method.
|
|
895
|
+
* lib/ttk/strategies/DistDelegate.rb: Use `raise_error' instead of
|
|
896
|
+
`raise'.
|
|
897
|
+
* lib/ttk/strategies/Tester.rb: Includes `ServiceManager' and no
|
|
898
|
+
longer used `Services::TesterClient' to avoid code duplication with
|
|
899
|
+
`Services::TesterMaster'.
|
|
900
|
+
* lib/ttk.rb: require 'mutex_m'.
|
|
901
|
+
|
|
902
|
+
2005-04-04 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
903
|
+
|
|
904
|
+
* test/ttk-dist/dist-delegate.yml: Readd almost all the test.
|
|
905
|
+
* lib/ttk/testers/Tester.rb: Introduce RemoteStatus. `run_strategy'
|
|
906
|
+
uses a local logger.
|
|
907
|
+
* lib/ttk/testers/Slave.rb: `test.sub_testers' is a hash.
|
|
908
|
+
* lib/ttk/strategies/SubCmd.rb: Trailling white space and comment an
|
|
909
|
+
exception.
|
|
910
|
+
* lib/ttk/strategies/Tester.rb,
|
|
911
|
+
* lib/ttk/strategies/DistDelegate.rb: Adapt to the new prototype of
|
|
912
|
+
`run_strategy'.
|
|
913
|
+
* lib/ttk/strategies/Composite.rb: Do not use `@contents' to compute
|
|
914
|
+
the status average.
|
|
915
|
+
* lib/ttk/strategies/Strategy.rb: Print the tester's name, type and uri
|
|
916
|
+
when a strategy is run on a tester.
|
|
917
|
+
* lib/ttkd.rb: Do not make the SymTbl and the Logger DRbUndumped.
|
|
918
|
+
|
|
919
|
+
2005-04-04 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
920
|
+
|
|
921
|
+
* test/ttk-dist/dist-delegate.yml: Readd few test.
|
|
922
|
+
* test/ttk-dist-suite.yml: Run only dist-delegate.
|
|
923
|
+
* lib/ttk/logger.rb: Add a FIXME.
|
|
924
|
+
* lib/ttk/testers/Tester.rb: English mistakes and assign the tester.
|
|
925
|
+
* lib/ttk/strategies/DistDispatch.rb: Rename to ...
|
|
926
|
+
* lib/ttk/strategies/DistDuplicate.rb: ... that.
|
|
927
|
+
* lib/ttk/strategies/DistDelegate.rb: is a Composite.
|
|
928
|
+
|
|
929
|
+
2005-04-04 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
930
|
+
|
|
931
|
+
* lib/ttk.rb, lib/ttkd.rb:
|
|
932
|
+
Clean the TTK module declaration scheme.
|
|
933
|
+
* bin/getopts/ttk.rb: Split an option for the cache mode.
|
|
934
|
+
* bin/ttk: Adapt to the new option.
|
|
935
|
+
|
|
936
|
+
2005-04-03 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
937
|
+
|
|
938
|
+
* test/ttk-dist/dist-error.yml, test/ttk-dist/dist-fail.yml: Remove
|
|
939
|
+
useless weight fields.
|
|
940
|
+
* test/ttk-dist-suite.yml: Add more test.
|
|
941
|
+
* lib/ttk/testers/Slave.rb, lib/ttk/testers/Master.rb: Use
|
|
942
|
+
`prologue_test' instead of the deprecated `test_created'.
|
|
943
|
+
* lib/ttk/strategies/Tester.rb: is a Composite and not a Proxy.
|
|
944
|
+
|
|
945
|
+
2005-04-03 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
946
|
+
|
|
947
|
+
* test/runit/fetchers/fetchers_test.rb: Require 'ttkd'.
|
|
948
|
+
|
|
949
|
+
* lib/ttk/services/MonitorServer.rb, lib/ttk/services/FetcherClient.rb,
|
|
950
|
+
* lib/ttk/services/MonitorClient.rb,
|
|
951
|
+
* lib/ttk/services/FetcherServer.rb: Remove requirements since ttkd use
|
|
952
|
+
autoload now.
|
|
953
|
+
|
|
954
|
+
* lib/ttk/fetchers/client.rb: Rename to ...
|
|
955
|
+
* lib/ttk/fetchers/Client.rb: ... that, for autoload reasons.
|
|
956
|
+
* lib/ttk/fetchers/server.rb: Rename to ...
|
|
957
|
+
* lib/ttk/fetchers/Server.rb: ... that, for autoload reasons.
|
|
958
|
+
* lib/ttk/monitors/client.rb: Rename to ...
|
|
959
|
+
* lib/ttk/monitors/Client.rb: ... that, for autoload reasons.
|
|
960
|
+
* lib/ttk/monitors/server.rb: Rename to ...
|
|
961
|
+
* lib/ttk/monitors/Server.rb: ... that, for autoload reasons.
|
|
962
|
+
* lib/ttk/monitors/monitor.rb: Rename to ...
|
|
963
|
+
* lib/ttk/monitors/Monitor.rb: ... that, for autoload reasons.
|
|
964
|
+
* lib/ttkd.rb: Id, LastChangeBy, changed property. Autoload `Monitors'
|
|
965
|
+
and `Fetchers'.
|
|
966
|
+
* lib/ttk/doc.rb: Remove. Deprecated, since a strategy can be ship over
|
|
967
|
+
the network.
|
|
968
|
+
|
|
969
|
+
2005-04-03 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
970
|
+
|
|
971
|
+
* test/ttk-dist-suite.yml: Temporary reduced to one little test. Adapt
|
|
972
|
+
to the new repository organization.
|
|
973
|
+
|
|
974
|
+
* lib/ttk/services/monitor_server.rb: Rename to ...
|
|
975
|
+
* lib/ttk/services/MonitorServer.rb: ... that, for autloading reasons.
|
|
976
|
+
* lib/ttk/services/fetcher_client.rb: Rename to ...
|
|
977
|
+
* lib/ttk/services/FetcherClient.rb: ... that, for autloading reasons.
|
|
978
|
+
* lib/ttk/services/tester_master.rb: Rename to ...
|
|
979
|
+
* lib/ttk/services/TesterMaster.rb: ... that, for autloading reasons.
|
|
980
|
+
* lib/ttk/services/monitor_client.rb: Rename to ...
|
|
981
|
+
* lib/ttk/services/MonitorClient.rb: ... that, for autloading reasons.
|
|
982
|
+
* lib/ttk/services/drb_service.rb: Rename to ...
|
|
983
|
+
* lib/ttk/services/DRbService.rb: ... that, for autloading reasons.
|
|
984
|
+
* lib/ttk/services/tester_slave.rb: Rename to ...
|
|
985
|
+
* lib/ttk/services/TesterSlave.rb: ... that, for autloading reasons.
|
|
986
|
+
* lib/ttk/services/tester_client.rb: Rename to ...
|
|
987
|
+
* lib/ttk/services/TesterClient.rb: ... that, for autloading reasons.
|
|
988
|
+
* lib/ttk/services/fetcher_server.rb: Rename to ...
|
|
989
|
+
* lib/ttk/services/FetcherServer.rb: ... that, for autloading reasons.
|
|
990
|
+
|
|
991
|
+
* lib/ttk/daemons/daemon/logger.rb: Add a FIXME.
|
|
992
|
+
|
|
993
|
+
* lib/ttk/daemons/Slave.rb, lib/ttk/daemons/Master.rb,
|
|
994
|
+
* lib/ttk/testers/Tester.rb, lib/ttk/testers/Slave.rb,
|
|
995
|
+
* lib/ttk/testers/Master.rb, lib/ttk/strategies/Fetcher.rb,
|
|
996
|
+
* lib/ttk/strategies/Tester.rb, lib/ttk/strategies/Fetch.rb,
|
|
997
|
+
* lib/ttk/daemons/Daemon.rb: Upgrade required files to fit the new
|
|
998
|
+
repository organization and the use of autoload.
|
|
999
|
+
|
|
1000
|
+
* lib/ttk/strategies/Tester.rb: .
|
|
1001
|
+
* lib/ttk/testers/Tester.rb: Do not use the `Doc' any more.
|
|
1002
|
+
|
|
1003
|
+
* lib/ttk/strategies/Composite.rb: Trailling white space and add more
|
|
1004
|
+
verbose comments.
|
|
1005
|
+
* lib/ttk/strategies/Tester.rb: is a Proxy now.
|
|
1006
|
+
|
|
1007
|
+
* lib/ttk/symtbl/SymTbl.rb: No longer undumpable by default.
|
|
1008
|
+
* lib/ttk.rb: Fix english mistakes and do not require `ttk/doc' any
|
|
1009
|
+
more.
|
|
1010
|
+
|
|
1011
|
+
* lib/ttkd.rb: New. aims at being the `ttk.rb' for the distributed
|
|
1012
|
+
mode. Autoloads needed files, requires basic files and upgrade some
|
|
1013
|
+
TTK's object for the distributed mode.
|
|
1014
|
+
|
|
1015
|
+
* bin/ttkd, bin/ttkm: Require `ttkd'.
|
|
1016
|
+
|
|
1017
|
+
* bin/getopts/ttkd.rb: Force to use the standard Logger.
|
|
1018
|
+
|
|
1019
|
+
2005-04-03 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1020
|
+
|
|
1021
|
+
* test/ttk-minimal/runit.yml: Some refactorization.
|
|
1022
|
+
* lib/ttk/strategies/CmdBase.rb: Typo + trailing white space.
|
|
1023
|
+
* lib/ttk.rb: Introduce RUBY_EX_DIR and ABS_RUBY_EX_DIR. Remove some
|
|
1024
|
+
fixme.
|
|
1025
|
+
* lib/ttk/strategies/RUnit.rb: Use ABS_RUBY_EX_DIR.
|
|
1026
|
+
|
|
1027
|
+
2005-04-03 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1028
|
+
|
|
1029
|
+
* test/ttk/Test/TestTStub.yml: Move to ...
|
|
1030
|
+
* test/ttk-minimal/test.yml: ... here, and adapt.
|
|
1031
|
+
* lib/ttk/Tools/ArrayDiff.rb, lib/ttk/Tools/Diff.rb,
|
|
1032
|
+
* lib/ttk/Tools/HashDiff.rb: Remove. Deprecated. We use ruby_ex/diff.rb
|
|
1033
|
+
* lib/ttk/strategies/Test.rb: Adapt to inherit from Proxy.
|
|
1034
|
+
* lib/ttk/strategies/Strategy.rb: Trainling white space.
|
|
1035
|
+
|
|
1036
|
+
2005-04-03 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1037
|
+
|
|
1038
|
+
* test/ttk-minimal/base.yml: Simplify.
|
|
1039
|
+
* test/examples/cache/simple.yml: Adapt the timeout delay.
|
|
1040
|
+
* Rakefile: Remove the useless auto require.
|
|
1041
|
+
* VERSION: Update.
|
|
1042
|
+
* lib/ttk/status.rb: Clean the @flow instance variable when it become
|
|
1043
|
+
useless.
|
|
1044
|
+
* lib/ttk/strategies/Strategy.rb: Skip with the good weight.
|
|
1045
|
+
* lib/ttk/strategies/Sleep.rb: Use to_f instead to_i.
|
|
1046
|
+
* bin: Changed property.
|
|
1047
|
+
* bin/ttk: Update.
|
|
1048
|
+
|
|
1049
|
+
2005-04-03 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1050
|
+
|
|
1051
|
+
TTK can now remains failed tests.
|
|
1052
|
+
You can now re-run only failed tests of a test suite.
|
|
1053
|
+
You can try with the example: test/examples/cache/simple.yml.
|
|
1054
|
+
|
|
1055
|
+
* test/examples/cache/simple.yml: New. Try it.
|
|
1056
|
+
* bin/ttk, lib/ttk/strategies/Strategy.rb: Implement the cache mode.
|
|
1057
|
+
* lib/ttk.rb: Update requires.
|
|
1058
|
+
* bin/getopts/ttk.rb: Add options: --cache, and --cache-proc.
|
|
1059
|
+
|
|
1060
|
+
2005-04-03 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1061
|
+
|
|
1062
|
+
* lib/ttk/dumpers/Yaml.rb: Clean Regexp.to_yaml.
|
|
1063
|
+
* lib/ttk/logger.rb: Use a Thread.exclusive to protect the logger.
|
|
1064
|
+
* lib/ttk/status.rb: The weight of the SkipStatus can be specified.
|
|
1065
|
+
* lib/ttk/loaders/Yaml.rb: Improve Class and OHash loading.
|
|
1066
|
+
* lib/ttk/symtbl/SymTbl.rb: Update.
|
|
1067
|
+
* lib/ttk/strategies/Collection.rb: Clean and improve `create'.
|
|
1068
|
+
* lib/ttk/strategies/Sleep.rb: Use to_i to convert the delay.
|
|
1069
|
+
* lib/ttk/weights/Weight.rb (+): Make `rhs' a Weight if it not.
|
|
1070
|
+
* bin/getopts/ttkm.rb, bin/getopts/ttkd.rb: Use argv, not ARGV.
|
|
1071
|
+
|
|
1072
|
+
2005-04-03 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1073
|
+
|
|
1074
|
+
* Rakefile: New.
|
|
1075
|
+
|
|
1076
|
+
2005-04-03 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1077
|
+
|
|
1078
|
+
* lib/ttk/filters/Saver.rb: Fix typo with log and logger.
|
|
1079
|
+
|
|
1080
|
+
2005-04-02 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1081
|
+
|
|
1082
|
+
* lib/ttk/strategies/Glob.rb: Remove backward compatibility support.
|
|
1083
|
+
|
|
1084
|
+
2005-04-02 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1085
|
+
|
|
1086
|
+
* lib/ttk/strategies/RUnit.rb: Groupt the RUnit result in a `result'
|
|
1087
|
+
fields to avoid conflict with futur attributes.
|
|
1088
|
+
|
|
1089
|
+
2005-04-02 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1090
|
+
|
|
1091
|
+
* test/ttk-minimal/unit_test.yml: Collect all test suite in the runit
|
|
1092
|
+
directory and bundle them in a suite.
|
|
1093
|
+
|
|
1094
|
+
* test/runit: New. Repository of TTK's unit test suite.
|
|
1095
|
+
* test/runit/logger: New. Repository of TTK's unit test suite, for the
|
|
1096
|
+
logger directory.
|
|
1097
|
+
* test/runit/loaders: New. Repository of TTK's unit test suite, for the
|
|
1098
|
+
loaders directory.
|
|
1099
|
+
* test/runit/fetchers: New. Repository of TTK's unit test suite, for
|
|
1100
|
+
the fetchers directory.
|
|
1101
|
+
|
|
1102
|
+
* lib/ttk/logger/verbosity.rb: Move the unit test suite to ...
|
|
1103
|
+
* test/runit/logger/verbosity_test.rb: New. ... here, and adapt.
|
|
1104
|
+
* lib/ttk/logger/section_node.rb: Move the unit test suite to ...
|
|
1105
|
+
* test/runit/logger/section_node_test.rb: New. ... here, and adapt.
|
|
1106
|
+
* lib/ttk/logger/severity.rb: Move the unit test suite to ...
|
|
1107
|
+
* test/runit/logger/severity_test.rb: New. ... here, and adapt.
|
|
1108
|
+
* lib/ttk/logger.rb: Move the unit test suite to ...
|
|
1109
|
+
* test/runit/logger_test.rb: New. ... here, and adapt.
|
|
1110
|
+
* lib/ttk/fetchers/fetchers_test.rb: Move to ...
|
|
1111
|
+
* test/runit/fetchers/fetchers_test.rb: ... here, and adapt.
|
|
1112
|
+
* lib/ttk/loaders/OYaml.rb: Move the unit test suite to ...
|
|
1113
|
+
* test/runit/loaders/OYaml_test.rb: New. ... here, and adapt.
|
|
1114
|
+
|
|
1115
|
+
* lib/ttk/strategies/RUnit.rb: Fix some bugs with the `work_dir'
|
|
1116
|
+
attribute.
|
|
1117
|
+
* test/ttk-minimal/runit.yml: Test the `work_dir' attributes and the
|
|
1118
|
+
`verbose' attributes.
|
|
1119
|
+
|
|
1120
|
+
2005-04-02 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1121
|
+
|
|
1122
|
+
* lib/ttk/logger/to_ttk_log.rb, lib/ttk/dumpers/Xml.rb,
|
|
1123
|
+
* lib/ttk/dumpers/Yaml.rb, lib/ttk/Tools/io/ext.rb,
|
|
1124
|
+
* lib/ttk/Tools/io/delegator.rb, lib/ttk/Tools/cut_output.rb,
|
|
1125
|
+
* lib/ttk/strategies/Suite.rb, lib/ttk/strategies/Block.rb: Comment
|
|
1126
|
+
useless test in order to not trouble the futur TTK's complete unit test
|
|
1127
|
+
suite.
|
|
1128
|
+
|
|
1129
|
+
* lib/ttk/fetchers/client.rb, lib/ttk/fetchers/server.rb,
|
|
1130
|
+
* lib/ttk/fetchers/fetchers_test.rb: Add 'ttk/' prefix to the required
|
|
1131
|
+
files.
|
|
1132
|
+
|
|
1133
|
+
* lib/ttk/logger/verbosity.rb, lib/ttk/logger/section_node.rb,
|
|
1134
|
+
* lib/ttk/logger/severity.rb, lib/ttk/loaders/OYaml.rb,
|
|
1135
|
+
* lib/ttk/fetchers/fetchers_test.rb: Use the Yaml test runner to fit
|
|
1136
|
+
RUnit strategy needs.
|
|
1137
|
+
|
|
1138
|
+
* lib/ttk/strategies/RUnit.rb: Add a `verbose' attribute to control the
|
|
1139
|
+
-w option of ruby.
|
|
1140
|
+
|
|
1141
|
+
2005-04-02 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1142
|
+
|
|
1143
|
+
* test/ttk-minimal/runit.yml: New. Test suite for the RUnit strategy.
|
|
1144
|
+
* test/ttk-minimal/unit_test.yml: New. Beginning of the TTK's unit test
|
|
1145
|
+
suite.
|
|
1146
|
+
* test/ressources/runit: New. Some resources for the RUnit test suite.
|
|
1147
|
+
* test/ressources/runit/bad.rb, test/ressources/runit/good.rb,
|
|
1148
|
+
* test/ressources/runit/error.rb: New.
|
|
1149
|
+
|
|
1150
|
+
* lib/ttk/logger/verbosity.rb, lib/ttk/logger/section_node.rb,
|
|
1151
|
+
* lib/ttk/logger/severity.rb: , changed property.
|
|
1152
|
+
* lib/ttk/logger.rb: Adapt test suite to fit the RUnit strategy
|
|
1153
|
+
requirements.
|
|
1154
|
+
|
|
1155
|
+
* lib/ttk/strategies/Pass.rb, lib/ttk/strategies/Fail.rb: `assertion'
|
|
1156
|
+
is a protected method.
|
|
1157
|
+
* lib/ttk/strategies/RUnit.rb: Use `system' instead of open("|. Manage
|
|
1158
|
+
a working directory and the $LOAD_PATH variables.
|
|
1159
|
+
|
|
1160
|
+
2005-04-02 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1161
|
+
|
|
1162
|
+
* lib/ttk/strategies/SubCmd.rb,
|
|
1163
|
+
* lib/ttk/strategies/Test.rb,
|
|
1164
|
+
* lib/ttk/strategies/DistDispatch.rb,
|
|
1165
|
+
* lib/ttk/strategies/Authors.rb,
|
|
1166
|
+
* lib/ttk/strategies/SqlQuery.rb,
|
|
1167
|
+
* lib/ttk/strategies/DistDelegate.rb,
|
|
1168
|
+
* lib/ttk/strategies/Composite.rb,
|
|
1169
|
+
* lib/ttk/strategies/Tester.rb,
|
|
1170
|
+
* lib/ttk/strategies/Extract.rb,
|
|
1171
|
+
* lib/ttk/strategies/Stub.rb,
|
|
1172
|
+
* lib/ttk/strategies/Clean.rb,
|
|
1173
|
+
* lib/ttk/strategies/KillAll.rb,
|
|
1174
|
+
* lib/ttk/strategies/JUnit.rb,
|
|
1175
|
+
* lib/ttk/strategies/Fetch.rb,
|
|
1176
|
+
* lib/ttk/strategies/Block.rb,
|
|
1177
|
+
* lib/ttk/strategies/CmdBase.rb,
|
|
1178
|
+
* lib/ttk/strategies/RUnit.rb,
|
|
1179
|
+
* lib/ttk/strategies/Strategy.rb,
|
|
1180
|
+
* lib/ttk/strategies/Checkout.rb,
|
|
1181
|
+
* lib/ttk/strategies/Abort.rb,
|
|
1182
|
+
* lib/ttk/strategies/Sleep.rb,
|
|
1183
|
+
* template/new_strategy.rb: Renaming: s/milogue/run_impl/g.
|
|
1184
|
+
|
|
1185
|
+
2005-04-02 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1186
|
+
|
|
1187
|
+
* lib/ttk/loaders/Loader.rb:
|
|
1188
|
+
Introduce testify instead of load_strategy.
|
|
1189
|
+
|
|
1190
|
+
* lib/ttk/strategies/Composite.rb, lib/ttk/strategies/Proxy.rb,
|
|
1191
|
+
* lib/ttk/strategies/Collection.rb, lib/ttk/strategies/Strategy.rb:
|
|
1192
|
+
Clean up the create method, and the initialisation system.
|
|
1193
|
+
|
|
1194
|
+
* lib/ttk/strategies/Bootstrap.rb, lib/ttk/strategies/Make.rb,
|
|
1195
|
+
* lib/ttk/strategies/Package.rb, lib/ttk/strategies/Ball.rb,
|
|
1196
|
+
* lib/ttk/strategies/Configure.rb,
|
|
1197
|
+
* lib/ttk/strategies/PackageCollection.rb:
|
|
1198
|
+
Give only one argument to create.
|
|
1199
|
+
|
|
1200
|
+
* lib/ttk/strategies/Fetcher.rb, lib/ttk/strategies/JUnit.rb,
|
|
1201
|
+
* lib/ttk/strategies/Fetch.rb, lib/ttk/strategies/Block.rb,
|
|
1202
|
+
* lib/ttk/strategies/CmdBase.rb, lib/ttk/strategies/Pool.rb:
|
|
1203
|
+
Clean up the initialize method prototype.
|
|
1204
|
+
|
|
1205
|
+
2005-04-01 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1206
|
+
|
|
1207
|
+
* misc/ttk-line-count.rb, lib/ttk/logger/section_node.rb,
|
|
1208
|
+
* lib/ttk/testers/Tester.rb, lib/ttk/loaders/Loader.rb,
|
|
1209
|
+
* lib/ttk/Tools/io/delegator.rb, lib/ttk/Tools/io/filters.rb,
|
|
1210
|
+
* lib/ttk/Tools/ArrayDiff.rb, lib/ttk/Tools/HashDiff.rb,
|
|
1211
|
+
* lib/ttk/strategies/Composite.rb, lib/ttk/strategies/Block.rb,
|
|
1212
|
+
* lib/ttk/strategies/Collection.rb, lib/ttk/logger.rb,
|
|
1213
|
+
* lib/ttk/strategies/PackageCollection.rb:
|
|
1214
|
+
Use block[*args] instead block.call(*args).
|
|
1215
|
+
* template/new_strategy.rb: Update.
|
|
1216
|
+
|
|
1217
|
+
2005-04-01 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1218
|
+
|
|
1219
|
+
* bin/ttk: s/result/log/g.
|
|
1220
|
+
* bin/getopts/ttk.rb: Fix the --include option.
|
|
1221
|
+
|
|
1222
|
+
* lib/ttk/strategies/IOBased.rb: New. Provide a good abstraction for
|
|
1223
|
+
* lib/ttk/strategies/CmdBase.rb: Make it inherit from IOBased and
|
|
1224
|
+
update.
|
|
1225
|
+
* lib/ttk/strategies/Cmd/StreamDiff.rb: Rename to ...
|
|
1226
|
+
* lib/ttk/strategies/Streams/Diff.rb: ... this. And update.
|
|
1227
|
+
* lib/ttk/strategies/Cmd/Stream.rb: Rename to ...
|
|
1228
|
+
* lib/ttk/strategies/Streams/Stream.rb: ... this. And improve.
|
|
1229
|
+
strategies which works with inputs/outputs.
|
|
1230
|
+
* lib/ttk/strategies/Cmd.rb: Clean up.
|
|
1231
|
+
* lib/ttk/strategies/SubCmd.rb: Update to new Streams.
|
|
1232
|
+
|
|
1233
|
+
* lib/ttk/dumpers/Yaml.rb: Add !path to builtin Yaml types.
|
|
1234
|
+
* lib/ttk/status.rb: Use a class method to get the default_weight_value.
|
|
1235
|
+
|
|
1236
|
+
* test/ttk-minimal/cat.yml, test/ttk-dist/local-fetch.yml,
|
|
1237
|
+
* test/ttk-dist/dist-cat.yml, test/ttk-minimal/wc.yml,
|
|
1238
|
+
* test/all/ref/out/remote_dispatcher.yml,
|
|
1239
|
+
* test/all/ref/out/remote_cmd.yml,
|
|
1240
|
+
* test/all.yml: Use the !path tag instead of *_from_file.
|
|
1241
|
+
|
|
1242
|
+
2005-04-01 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1243
|
+
|
|
1244
|
+
* lib/ttk/logger/section_node.rb: `set_active_section' returns the list
|
|
1245
|
+
of activated/unactivated section.
|
|
1246
|
+
* lib/ttk/logger.rb: Use `set_active_section'.
|
|
1247
|
+
|
|
1248
|
+
2005-04-01 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1249
|
+
|
|
1250
|
+
* lib/ttk/logger/section_node.rb: Add set_active_section as a top-level
|
|
1251
|
+
for active_section and unactive_section. active setter call active_tree
|
|
1252
|
+
for consistency reason.
|
|
1253
|
+
|
|
1254
|
+
2005-04-01 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1255
|
+
|
|
1256
|
+
* lib/ttk/logger/section_node.rb: Implement `unactive_section' and add
|
|
1257
|
+
some comments.
|
|
1258
|
+
|
|
1259
|
+
2005-04-01 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1260
|
+
|
|
1261
|
+
* lib/ttk/logger/section_node.rb: Older active= method becomes
|
|
1262
|
+
active_tree method and active= becomes a simple setter. Add
|
|
1263
|
+
active_section the real way to active a section in a tree: active all
|
|
1264
|
+
sub_sections of a given section and its ancestors.
|
|
1265
|
+
* lib/ttk/logger.rb: Adapt to the new active section method.
|
|
1266
|
+
|
|
1267
|
+
2005-04-01 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1268
|
+
|
|
1269
|
+
* lib/ttk/logger/verbosity.rb: Return the severity_level label instead
|
|
1270
|
+
of the number. Take section_name in argument instead of a SectionNode
|
|
1271
|
+
instance.
|
|
1272
|
+
* lib/ttk/logger/section_node.rb: Fix bug in pre_depth_first. Add push
|
|
1273
|
+
which perform multiple << in a row.
|
|
1274
|
+
* lib/ttk/logger/severity.rb: Add label to be able to get the label of
|
|
1275
|
+
a particular level from its number.
|
|
1276
|
+
* lib/ttk/logger.rb: Many bug fix and upgrade the test suite.
|
|
1277
|
+
* lib/ttk.rb: Group the requirement in one block.
|
|
1278
|
+
|
|
1279
|
+
2005-04-01 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1280
|
+
|
|
1281
|
+
* lib/ttk/logger/to_ttk_log.rb, lib/ttk/dumpers/Xml.rb,
|
|
1282
|
+
* lib/ttk/dumpers/Yaml.rb, lib/ttk/status.rb, lib/ttk/filters/Saver.rb,
|
|
1283
|
+
* lib/ttk/strategies/Make.rb, lib/ttk/strategies/Bootstrap.rb,
|
|
1284
|
+
* lib/ttk/strategies/SubCmd.rb, lib/ttk/strategies/RemoteCmd.rb,
|
|
1285
|
+
* lib/ttk/strategies/Test.rb, lib/ttk/strategies/Fetcher.rb,
|
|
1286
|
+
* lib/ttk/strategies/Glob.rb, lib/ttk/strategies/DistDispatch.rb,
|
|
1287
|
+
* lib/ttk/strategies/Authors.rb, lib/ttk/strategies/SqlQuery.rb,
|
|
1288
|
+
* lib/ttk/strategies/Compile.rb, lib/ttk/strategies/Package.rb,
|
|
1289
|
+
* lib/ttk/strategies/DistDelegate.rb, lib/ttk/strategies/Composite.rb,
|
|
1290
|
+
* lib/ttk/strategies/Tester.rb, lib/ttk/strategies/Extract.rb,
|
|
1291
|
+
* lib/ttk/strategies/Ball.rb, lib/ttk/strategies/Stub.rb,
|
|
1292
|
+
* lib/ttk/strategies/Proxy.rb, lib/ttk/strategies/Configure.rb,
|
|
1293
|
+
* lib/ttk/strategies/Clean.rb, lib/ttk/strategies/KillAll.rb,
|
|
1294
|
+
* lib/ttk/strategies/JUnit.rb, lib/ttk/strategies/Fetch.rb,
|
|
1295
|
+
* lib/ttk/strategies/Block.rb, lib/ttk/strategies/Collection.rb,
|
|
1296
|
+
* lib/ttk/strategies/RUnit.rb, lib/ttk/strategies/Cmd/StreamDiff.rb,
|
|
1297
|
+
* lib/ttk/strategies/Cmd/Stream.rb, lib/ttk/strategies/Strategy.rb,
|
|
1298
|
+
* lib/ttk/strategies/Cmd.rb, lib/ttk/strategies/Checkout.rb,
|
|
1299
|
+
* lib/ttk/strategies/Abort.rb, lib/ttk/strategies/PackageCollection.rb,
|
|
1300
|
+
* lib/ttk/strategies/Sleep.rb, lib/ttk/strategies/Pool.rb,
|
|
1301
|
+
* lib/ttk/strategies/CmdBase.rb, lib/ttk/strategies/Import.rb,
|
|
1302
|
+
* lib/ttk/strategies/ProbabilityThreshold.rb: Rename result to @log.
|
|
1303
|
+
* lib/ttk/strategies/CmdDiff.rb: Remove.
|
|
1304
|
+
|
|
1305
|
+
2005-04-01 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1306
|
+
|
|
1307
|
+
* lib/ttk/strategies/ProbabilityThreshold.rb: New. Assume that a
|
|
1308
|
+
strategy pass when its result is better than the given threshold.
|
|
1309
|
+
* test/ttk-minimal/probability_threshold.yml: New.
|
|
1310
|
+
|
|
1311
|
+
2005-04-01 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1312
|
+
|
|
1313
|
+
* lib/ttk.rb: Move the status require after the Weights declaration.
|
|
1314
|
+
* lib/ttk/status.rb: Print the weight only when its different of the
|
|
1315
|
+
default value (FAIL(0%) => FAIL).
|
|
1316
|
+
* lib/ttk/strategies/Fail.rb: Allow to specify the returned status
|
|
1317
|
+
value.
|
|
1318
|
+
* lib/ttk/strategies/Cmd.rb, lib/ttk/strategies/Make.rb,
|
|
1319
|
+
* lib/ttk/strategies/Proxy.rb, lib/ttk/strategies/Strategy.rb,
|
|
1320
|
+
* lib/ttk/strategies/SubCmd.rb: Update attributes of type Class.
|
|
1321
|
+
|
|
1322
|
+
2005-03-31 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1323
|
+
|
|
1324
|
+
* lib/ttk/logger/to_ttk_log.rb: Specifie the inherited class when
|
|
1325
|
+
extend the OHash class to avoid superclass mismatch error.
|
|
1326
|
+
|
|
1327
|
+
2005-03-31 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1328
|
+
|
|
1329
|
+
* lib/ttk/logger/to_ttk_log.rb: Do not require 'exception' any more
|
|
1330
|
+
since it is required by ttk.
|
|
1331
|
+
* lib/ttk/logger.rb: Do not convert to ttk log the message returned by
|
|
1332
|
+
the block. Add 'ttk/' to the requirement path. Start to upgrade the
|
|
1333
|
+
unit test suite.
|
|
1334
|
+
* lib/ttk/strategies/RemoteCmd.rb, lib/ttk/strategies/Test.rb,
|
|
1335
|
+
* lib/ttk/strategies/Fetcher.rb, lib/ttk/strategies/Tester.rb,
|
|
1336
|
+
* lib/ttk/strategies/Fetch.rb, lib/ttk/strategies/Cmd.rb:
|
|
1337
|
+
Add 'ttk/' to the requirement path.
|
|
1338
|
+
* lib/ttk.rb: Do not add lib/ttk to library path.
|
|
1339
|
+
|
|
1340
|
+
2005-03-31 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1341
|
+
|
|
1342
|
+
* lib/ttk/logger/verbosity.rb: Add a unit test suite to the class
|
|
1343
|
+
TTK::Logger::Verbosity.
|
|
1344
|
+
|
|
1345
|
+
2005-03-31 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1346
|
+
|
|
1347
|
+
* lib/ttk/dumpers/Xml.rb, lib/ttk/dumpers/Yaml.rb,
|
|
1348
|
+
* lib/ttk/logger/to_ttk_log.rb, lib/ttk/logger.rb,
|
|
1349
|
+
* lib/ttk/status.rb, lib/ttk/testers/tester/query_node.rb,
|
|
1350
|
+
* lib/ttk/strategies/DistDispatch.rb, lib/ttk/strategies/Package.rb,
|
|
1351
|
+
* lib/ttk/strategies/Cmd/StreamDiff.rb,
|
|
1352
|
+
* lib/ttk/strategies/Cmd/Stream.rb, lib/ttk/strategies/Strategy.rb,
|
|
1353
|
+
* lib/ttk/strategies/Cmd.rb, bin/ttk: s/tkk/ttk/g.
|
|
1354
|
+
|
|
1355
|
+
2005-03-31 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1356
|
+
|
|
1357
|
+
* NORM: Fix a typo.
|
|
1358
|
+
|
|
1359
|
+
2005-03-31 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1360
|
+
|
|
1361
|
+
* lib/ttk/logger/verbosity.rb: New. Provides an easy way to add a new
|
|
1362
|
+
information field to a verbosity level and holds the methods that
|
|
1363
|
+
format the information message.
|
|
1364
|
+
* lib/ttk/logger.rb: Add support for Verbosity level. Rename
|
|
1365
|
+
@log_level to @severity_level and @log_section to @section in order to
|
|
1366
|
+
be homogenous.
|
|
1367
|
+
|
|
1368
|
+
2005-03-31 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1369
|
+
|
|
1370
|
+
* NORM: Add a rule concerning blocks.
|
|
1371
|
+
|
|
1372
|
+
2005-03-31 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1373
|
+
|
|
1374
|
+
* lib/ttk/logger/to_ttk_log.rb: Typo.
|
|
1375
|
+
* lib/ttk/logger/Path.rb: Move to ...
|
|
1376
|
+
* lib/ttk/logger/path.rb: ... here, to be homogene with the rest of
|
|
1377
|
+
the directory. Now, belongs to the class Logger.
|
|
1378
|
+
* lib/ttk/logger.rb: Require 'logger/path'.
|
|
1379
|
+
|
|
1380
|
+
2005-03-31 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1381
|
+
|
|
1382
|
+
* lib/ttk/logger/section_node.rb: Rename `*sub_node*' to
|
|
1383
|
+
`*sub_section*' ; use `each_value' instead of `each' ;
|
|
1384
|
+
`pre_depth_first' pass block recursively ; `each*' pass block to the
|
|
1385
|
+
Hash version of `each*'.
|
|
1386
|
+
|
|
1387
|
+
2005-03-31 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1388
|
+
|
|
1389
|
+
* lib/ttk/logger/ToResult.rb: Move to ...
|
|
1390
|
+
* lib/ttk/logger/to_ttk_log.rb: ... here.
|
|
1391
|
+
* lib/ttk/logger/to_ttk_log.rb, lib/ttk/dumpers/Xml.rb,
|
|
1392
|
+
* lib/ttk/dumpers/Yaml.rb, lib/ttk/logger.rb, lib/ttk/status.rb,
|
|
1393
|
+
* lib/ttk/testers/tester/query_node.rb,
|
|
1394
|
+
* lib/ttk/strategies/DistDispatch.rb, lib/ttk/strategies/Package.rb,
|
|
1395
|
+
* lib/ttk/strategies/Cmd/StreamDiff.rb,
|
|
1396
|
+
* lib/ttk/strategies/Cmd/Stream.rb, lib/ttk/strategies/Strategy.rb,
|
|
1397
|
+
* lib/ttk/strategies/Cmd.rb, bin/ttk: s/to_result/to_ttk_log/g.
|
|
1398
|
+
|
|
1399
|
+
2005-03-31 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1400
|
+
|
|
1401
|
+
* lib/ttk/logger/ToResult.rb, lib/ttk/logger.rb,
|
|
1402
|
+
* lib/ttk/testers/tester/query_node.rb, lib/ttk/strategies/Package.rb,
|
|
1403
|
+
* lib/ttk/strategies/DistDelegate.rb, lib/ttk/strategies/Composite.rb,
|
|
1404
|
+
* lib/ttk/strategies/Tester.rb, lib/ttk/strategies/Fetch.rb,
|
|
1405
|
+
* lib/ttk/strategies/Collection.rb, lib/ttk/strategies/Strategy.rb,
|
|
1406
|
+
* lib/ttk/strategies/Pool.rb: s/chnode/new_node/g et
|
|
1407
|
+
s/__add__/new_leaf/g.
|
|
1408
|
+
* lib/ttk/filters/Saver.rb: Remove CONVERT because it is useless.
|
|
1409
|
+
|
|
1410
|
+
2005-03-31 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1411
|
+
|
|
1412
|
+
* lib/ttk/logger/section_node.rb: The method `pre_depth_first' must
|
|
1413
|
+
return nil. The method `find' return nil in case of negative search.
|
|
1414
|
+
Test a case of negative search.
|
|
1415
|
+
* lib/ttk/logger.rb: Store the active section in an array in order to
|
|
1416
|
+
perform a fast search of an active section.
|
|
1417
|
+
|
|
1418
|
+
2005-03-31 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1419
|
+
|
|
1420
|
+
* lib/ttk/logger.rb: Add method `active_log_section'. Active a set
|
|
1421
|
+
of section by traversing the section tree. Remove @log_sections,
|
|
1422
|
+
because it becomes deprecated.
|
|
1423
|
+
|
|
1424
|
+
2005-03-31 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1425
|
+
|
|
1426
|
+
* lib/ttk/logger/section_node.rb: Add the method find to find a
|
|
1427
|
+
section node by name.
|
|
1428
|
+
|
|
1429
|
+
2005-03-31 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1430
|
+
|
|
1431
|
+
* lib/ttk/logger/section_tree.rb: Move to ...
|
|
1432
|
+
* lib/ttk/logger/section_node.rb: ... here, because the class
|
|
1433
|
+
SectionTree is renamed to SectionNode.
|
|
1434
|
+
* lib/ttk/logger.rb: s/SectionTree/SectionNode/g.
|
|
1435
|
+
|
|
1436
|
+
2005-03-31 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1437
|
+
|
|
1438
|
+
* lib/ttk/logger/section_tree.rb: Manages active attribute recursively.
|
|
1439
|
+
Hold sub_section in a hash to allow fast access by section name. Do
|
|
1440
|
+
not inherit from Node any more.
|
|
1441
|
+
* lib/ttk/logger.rb: Rename section_forest to section_tree.
|
|
1442
|
+
|
|
1443
|
+
2005-03-30 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1444
|
+
|
|
1445
|
+
This strategy (made by Vincent Cuissard) manage sql base tests. It use
|
|
1446
|
+
unit testing (EXCEPT ALL query) for checking results.
|
|
1447
|
+
|
|
1448
|
+
* lib/ttk/strategies/SqlQuery.rb: New.
|
|
1449
|
+
* test/examples/sql/basic.yml: New. A basic test for the SqlQuery
|
|
1450
|
+
strategy.
|
|
1451
|
+
|
|
1452
|
+
2005-03-30 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1453
|
+
|
|
1454
|
+
* lib/ttk/logger.rb: Add an ensure to fix the new_node notification.
|
|
1455
|
+
|
|
1456
|
+
2005-03-30 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1457
|
+
|
|
1458
|
+
* vcs/HOWTO: Update.
|
|
1459
|
+
|
|
1460
|
+
2005-03-29 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1461
|
+
|
|
1462
|
+
* lib/ttk/logger/section_tree.rb: New. Manage a tree of log section.
|
|
1463
|
+
Useful to select precisely the section where the logger has to be
|
|
1464
|
+
verbose.
|
|
1465
|
+
* lib/ttk/logger.rb: Add an attribute which contain a forest of section
|
|
1466
|
+
tree.
|
|
1467
|
+
|
|
1468
|
+
2005-03-29 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1469
|
+
|
|
1470
|
+
* lib/ttk/strategies/KillAll.rb: Add a little delay after killing some
|
|
1471
|
+
process to wait for the system kill processes.
|
|
1472
|
+
* test/ttk-minimal/killall.yml, test/ttk-minimal/pool.yml: Update.
|
|
1473
|
+
|
|
1474
|
+
2005-03-28 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1475
|
+
|
|
1476
|
+
* lib/ttk/strategies/Strategy.rb: Fix a typo, and adapt the synflow.
|
|
1477
|
+
* lib/ttk/status.rb: Revert the previous patch.
|
|
1478
|
+
|
|
1479
|
+
2005-03-28 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1480
|
+
|
|
1481
|
+
* lib/ttk/logger.rb: Adapt requirements to the right directory name.
|
|
1482
|
+
* lib/ttk/result: Rename to ...
|
|
1483
|
+
* lib/ttk/logger: ... this.
|
|
1484
|
+
|
|
1485
|
+
2005-03-28 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1486
|
+
|
|
1487
|
+
* lib/ttk/result/severity.rb: New. Contains the TTK::Logger::Severity
|
|
1488
|
+
module.
|
|
1489
|
+
|
|
1490
|
+
2005-03-28 Nicolas Despr�s <nicolas.despres@gmail.com>
|
|
1491
|
+
|
|
1492
|
+
* lib/ttk/dumpers/Xml.rb, lib/ttk/dumpers/Yaml.rb,
|
|
1493
|
+
* lib/ttk/testers/Tester.rb, lib/ttk/filters/Filter.rb,
|
|
1494
|
+
* lib/ttk/strategies/Test.rb, lib/ttk/strategies/Suite.rb,
|
|
1495
|
+
* lib/ttk/strategies/Block.rb, lib/ttk/strategies/Pool.rb,
|
|
1496
|
+
* lib/ttk/result/ToResult.rb, lib/ttk.rb, bin/ttk,
|
|
1497
|
+
* bin/getopts/ttk.rb: s/Result::Stream/Logger/g.
|
|
1498
|
+
* lib/ttk/result/Stream.rb: Remove. Becomes Logger.
|
|
1499
|
+
* lib/ttk/logger.rb: New. Replace the module Result and hold the
|
|
1500
|
+
Result::Stream methods.
|
|
1501
|
+
|
|
1502
|
+
2005-03-28 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1503
|
+
|
|
1504
|
+
* lib/ttk/strategies/Strategy.rb: No more use a synflow tree, and
|
|
1505
|
+
improve the synflow factory.
|
|
1506
|
+
* lib/ttk/strategies/Pool.rb: Run another thread to catch properly
|
|
1507
|
+
exceptions, then make useless the synflow tree and increase
|
|
1508
|
+
performances.
|
|
1509
|
+
* lib/ttk/status.rb: No more feed the synflow, let the `abort' method
|
|
1510
|
+
do it.
|
|
1511
|
+
* lib/ttk: Changed svn:ignore property.
|
|
1512
|
+
|
|
1513
|
+
2005-03-28 Nicolas Despr�s <polrop@lrde.epita.fr>
|
|
1514
|
+
|
|
1515
|
+
* lib/ttk/filters/Saver.rb: Fix english mistakes.
|
|
1516
|
+
* lib/ttk/result/Stream.rb: Add logger sections and severities level
|
|
1517
|
+
management.
|
|
1518
|
+
|
|
1519
|
+
2005-03-24 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1520
|
+
|
|
1521
|
+
* vcs/ttk.rb: Update to the new mailing list.
|
|
1522
|
+
|
|
1523
|
+
2005-03-23 Nicolas Despr�s <polrop@lrde.epita.fr>
|
|
1524
|
+
|
|
1525
|
+
* misc/ttk-line-count.rb: Update option parser help message to fit
|
|
1526
|
+
the new default value.
|
|
1527
|
+
|
|
1528
|
+
2005-03-23 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1529
|
+
|
|
1530
|
+
* misc/ttk-line-count.rb: Make a colomun based output.
|
|
1531
|
+
|
|
1532
|
+
2005-03-23 Nicolas Despr�s <polrop@lrde.epita.fr>
|
|
1533
|
+
|
|
1534
|
+
* misc/ttk-line-count.rb: New. A script that count the number of line
|
|
1535
|
+
of code in ttk.
|
|
1536
|
+
* misc/ttk-grep.sh: Avoid emacs' backup file.
|
|
1537
|
+
|
|
1538
|
+
2005-03-22 Nicolas Despr�s <polrop@lrde.epita.fr>
|
|
1539
|
+
|
|
1540
|
+
* misc/ttk-grep.sh: New. A script to search inside ttk's sources (based
|
|
1541
|
+
on grep).
|
|
1542
|
+
|
|
1543
|
+
2005-03-02 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1544
|
+
|
|
1545
|
+
* TODO: Correct English mistakes.
|
|
1546
|
+
|
|
1547
|
+
2005-03-01 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1548
|
+
|
|
1549
|
+
* lib/ttk/strategies/Package.rb: Permit to skip any step.
|
|
1550
|
+
* lib/ttk/strategies/Strategy.rb: Comment the flow_id dumping.
|
|
1551
|
+
* lib/ttk/strategies/Cmd.rb: Do a better expanding.
|
|
1552
|
+
* lib/ttk/symtbl/SymTbl.rb: Add do_symtbl_gsub an helper to use
|
|
1553
|
+
symtbl_gsub.
|
|
1554
|
+
|
|
1555
|
+
2005-03-01 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1556
|
+
|
|
1557
|
+
* lib/ttk/strategies/Bootstrap.rb: Skip if a configure is already here.
|
|
1558
|
+
* lib/ttk/strategies/Make.rb: Handle continue_mode and jobs options.
|
|
1559
|
+
* lib/ttk/strategies/Package.rb: Update.
|
|
1560
|
+
* lib/ttk/strategies/Extract.rb: Put a deprecated FIXME.
|
|
1561
|
+
* lib/ttk/strategies/Configure.rb: Improve the flags handling.
|
|
1562
|
+
* lib/ttk/strategies/Cmd.rb: Use @symtbl[:env] and make a tiny
|
|
1563
|
+
substitution.
|
|
1564
|
+
* lib/ttk/strategies/Checkout.rb: Extract if possible.
|
|
1565
|
+
* lib/ttk/strategies/PackageCollection.rb: Update the symtbl with the
|
|
1566
|
+
install_dir of each package, and make fatal a dependency.
|
|
1567
|
+
* test/ttk-minimal/env_cmd.yml: Test the symbols feature.
|
|
1568
|
+
* misc/gendoc.rb: Update.
|
|
1569
|
+
|
|
1570
|
+
2005-03-01 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1571
|
+
|
|
1572
|
+
* lib/ttk/strategies/Strategy.rb: Fix the synchornization automaton,
|
|
1573
|
+
and add the :symbols attribute, which permit to specify values for the
|
|
1574
|
+
symtbl.
|
|
1575
|
+
* lib/ttk/strategies/Pool.rb: Update the flow feeding.
|
|
1576
|
+
|
|
1577
|
+
2005-03-01 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1578
|
+
|
|
1579
|
+
* lib/ttk/strategies/Strategy.rb:
|
|
1580
|
+
Fix the synchronization automaton, automaticly clean useless instance
|
|
1581
|
+
variables at the end, and remove create.
|
|
1582
|
+
|
|
1583
|
+
* lib/ttk/strategies/Proxy.rb: New. Use it when you want compose with
|
|
1584
|
+
only one strategy.
|
|
1585
|
+
|
|
1586
|
+
* lib/ttk/strategies/Make.rb,
|
|
1587
|
+
* lib/ttk/strategies/Bootstrap.rb,
|
|
1588
|
+
* lib/ttk/strategies/Fetcher.rb,
|
|
1589
|
+
* lib/ttk/strategies/Compile.rb,
|
|
1590
|
+
* lib/ttk/strategies/Configure.rb,
|
|
1591
|
+
* lib/ttk/strategies/Fetch.rb,
|
|
1592
|
+
* lib/ttk/strategies/Import.rb,
|
|
1593
|
+
* lib/ttk/strategies/Test.rb: Is a Proxy.
|
|
1594
|
+
|
|
1595
|
+
* lib/ttk/strategies/PackageCollection.rb,
|
|
1596
|
+
* lib/ttk/strategies/Glob.rb: No more have a useless internal Suite.
|
|
1597
|
+
* lib/ttk/strategies/Composite.rb: Extract the Proxy feature.
|
|
1598
|
+
* lib/ttk/strategies/Ball.rb: Put a deprecated FIXME.
|
|
1599
|
+
* lib/ttk/strategies/Cmd.rb: Fix the :env default value.
|
|
1600
|
+
* lib/ttk/dumpers/Notif.rb: Use the ttk option in to_yaml call.
|
|
1601
|
+
* lib/ttk/dumpers/Yaml.rb: Restore the old version and put a FIXME.
|
|
1602
|
+
* lib/ttk/Tools/io/yaml.rb: Remove. Useless.
|
|
1603
|
+
* lib/ttk/weights/WExpr.rb (to_yaml): Use the ttk option if present.
|
|
1604
|
+
|
|
1605
|
+
2005-03-01 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1606
|
+
|
|
1607
|
+
* lib/ttk/dumpers/Yaml.rb: Use a :ttk option to specify that `to_yaml'
|
|
1608
|
+
is `a la ttk'.
|
|
1609
|
+
|
|
1610
|
+
2005-02-28 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1611
|
+
|
|
1612
|
+
* lib/ttk/strategies/Strategy.rb: Use SynFlow* to describe the
|
|
1613
|
+
synchronization.
|
|
1614
|
+
* lib/ttk/strategies/Pool.rb, lib/ttk/status.rb: Update to flows.
|
|
1615
|
+
* test/ttk-minimal/pool.yml: Set a timeout to 6.
|
|
1616
|
+
* test/ttk-minimal/base.yml: Set a timeout to 0.4.
|
|
1617
|
+
|
|
1618
|
+
2005-02-25 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1619
|
+
|
|
1620
|
+
* lib/ttk/status.rb: Add two new status, and improve the AbortStatus.
|
|
1621
|
+
* lib/ttk/loaders/Yaml.rb: Change the debug level.
|
|
1622
|
+
* lib/ttk/strategies/CmdBase.rb: Protect `kill' against special cases.
|
|
1623
|
+
* lib/ttk/strategies/Strategy.rb: Improve the mutex handling.
|
|
1624
|
+
* lib/ttk/strategies/Pool.rb: Improve and clean the thread/mutex
|
|
1625
|
+
handling.
|
|
1626
|
+
* lib/ttk/strategies/Composite.rb: Factor the weight computation and
|
|
1627
|
+
recall it in the epilogue.
|
|
1628
|
+
* lib/ttk.rb: Add the TTKException.
|
|
1629
|
+
* test/ttk-minimal/pool.yml: Update.
|
|
1630
|
+
|
|
1631
|
+
2005-02-20 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1632
|
+
|
|
1633
|
+
* lib/ttk/strategies/Strategy.rb: Use timeout_mutex and tree_mutex to
|
|
1634
|
+
ensure that only a milgue can be interrupted, even in nested cases.
|
|
1635
|
+
|
|
1636
|
+
2005-02-19 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1637
|
+
|
|
1638
|
+
* lib/ttk.rb: Remove some coments.
|
|
1639
|
+
* bin/ttk: Set RUBYLIB in a dynamic way.
|
|
1640
|
+
|
|
1641
|
+
2005-02-19 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1642
|
+
|
|
1643
|
+
* lib/ttk/status.rb: Remove require 'exception' since it is required by
|
|
1644
|
+
ttk.rb.
|
|
1645
|
+
* lib/ttk.rb, bin/ttk: : Reorganize requirements.
|
|
1646
|
+
* bin/getopts/ttk.rb: Do not use SRC_DIR any more.
|
|
1647
|
+
* bin/ttkd: Start to reorganize requirements.
|
|
1648
|
+
|
|
1649
|
+
2005-02-19 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1650
|
+
|
|
1651
|
+
* lib/filters: Move to ...
|
|
1652
|
+
* lib/ttk/filters: ... here.
|
|
1653
|
+
|
|
1654
|
+
|
|
1655
|
+
2005-02-19 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1656
|
+
|
|
1657
|
+
* lib/dumpers, lib/services, lib/status.rb, lib/daemons, lib/loaders,
|
|
1658
|
+
* lib/testers, lib/Tools, lib/fetchers, lib/doc.rb, lib/weights,
|
|
1659
|
+
* lib/symtbl, lib/monitors, lib/strategies, lib/result: Move to
|
|
1660
|
+
lib/ttk/.
|
|
1661
|
+
* lib/ttk: New. Holds ttk library source files except the interface
|
|
1662
|
+
source file: ttk.rb.
|
|
1663
|
+
|
|
1664
|
+
2005-02-19 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1665
|
+
|
|
1666
|
+
* src: Rename to lib
|
|
1667
|
+
* lib: New. Hold the ttk's library source files.
|
|
1668
|
+
|
|
1669
|
+
|
|
1670
|
+
2005-02-19 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1671
|
+
|
|
1672
|
+
* src/getopts: Move to ...
|
|
1673
|
+
* bin/getopts: ... here.
|
|
1674
|
+
* src/ttkm: Move to ...
|
|
1675
|
+
* bin/ttkm: ... here.
|
|
1676
|
+
* src/ttk: Move to ...
|
|
1677
|
+
* bin/ttk: ... here.
|
|
1678
|
+
* src/ttkd: Move to ...
|
|
1679
|
+
* bin/ttkd: ... here.
|
|
1680
|
+
* bin: New. Hold basic drivers.
|
|
1681
|
+
|
|
1682
|
+
2005-02-19 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1683
|
+
|
|
1684
|
+
* src: Changed property. Move ruby_ex to ...
|
|
1685
|
+
* .: Changed property. ... here.
|
|
1686
|
+
|
|
1687
|
+
|
|
1688
|
+
2005-02-18 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1689
|
+
|
|
1690
|
+
* src/dumpers/Notif.rb, src/dumpers/TracesXml.rb,
|
|
1691
|
+
* src/status.rb, src/testers/tester/notifier.rb,
|
|
1692
|
+
* src/weights/WExpr.rb, src/strategies/SubCmd.rb,
|
|
1693
|
+
* src/strategies/Make.rb, src/strategies/Bootstrap.rb,
|
|
1694
|
+
* src/strategies/Package.rb, src/strategies/Composite.rb,
|
|
1695
|
+
* src/strategies/KillAll.rb, src/strategies/Collection.rb,
|
|
1696
|
+
* src/strategies/Cmd/StreamDiff.rb, src/strategies/Checkout.rb,
|
|
1697
|
+
* src/strategies/PackageCollection.rb: Changed property. svn:keywords.
|
|
1698
|
+
|
|
1699
|
+
2005-02-18 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1700
|
+
|
|
1701
|
+
* src/dumpers/Notif.rb, src/dumpers/Xml.rb, src/dumpers/Yaml.rb,
|
|
1702
|
+
* src/dumpers/TracesXml.rb, src/dumpers/Dumper.rb,
|
|
1703
|
+
* src/loaders/YamlOld.rb, src/loaders/OYaml.rb,
|
|
1704
|
+
* src/loaders/Yaml.rb, src/loaders/Loader.rb,
|
|
1705
|
+
* src/filters/Saver.rb, src/filters/BasicLogger.rb,
|
|
1706
|
+
* src/filters/Filter.rb, src/weights/WExpr.rb,
|
|
1707
|
+
* src/weights/WMin.rb, src/weights/WFloat.rb,
|
|
1708
|
+
* src/strategies/SubCmd.rb, src/strategies/Make.rb,
|
|
1709
|
+
* src/strategies/CmdDiff.rb, src/strategies/Stub.rb,
|
|
1710
|
+
* src/strategies/Block.rb, src/strategies/CmdBase.rb,
|
|
1711
|
+
* src/strategies/Cmd/StreamDiff.rb, src/strategies/Cmd/Stream.rb,
|
|
1712
|
+
* src/strategies/Strategy.rb, src/symtbl/SymTbl.rb,
|
|
1713
|
+
* src/result/Stream.rb, src/result/Path.rb: No more require 'ttk'.
|
|
1714
|
+
* src/strategies/Tester.rb: Add a forgotten comma.
|
|
1715
|
+
* src/strategies/Glob.rb: Typo.
|
|
1716
|
+
* src/status.rb: require 'exception'.
|
|
1717
|
+
* src/ttk: Library path management and logger initialization moved
|
|
1718
|
+
to ...
|
|
1719
|
+
* src/ttk.rb: ... here.
|
|
1720
|
+
|
|
1721
|
+
2005-02-17 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1722
|
+
|
|
1723
|
+
* src/strategies/Extract.rb: Skip if the target is a directory.
|
|
1724
|
+
* src/strategies/Configure.rb (have_configure?),
|
|
1725
|
+
* src/strategies/Bootstrap.rb (have_bootstrap?): Return a complete path.
|
|
1726
|
+
* src/strategies/Checkout.rb: Dump more information.
|
|
1727
|
+
|
|
1728
|
+
2005-02-16 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1729
|
+
|
|
1730
|
+
* src/strategies/PackageCollection.rb: New. Handle dependencies
|
|
1731
|
+
between a collection of packages.
|
|
1732
|
+
* src/strategies/Configure.rb: Look at symtbl for configure flags.
|
|
1733
|
+
|
|
1734
|
+
2005-02-13 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1735
|
+
|
|
1736
|
+
* template/new_strategy.rb: Update.
|
|
1737
|
+
|
|
1738
|
+
2005-02-13 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1739
|
+
|
|
1740
|
+
* src/strategies/Package.rb: New. Compose others Strategy which take
|
|
1741
|
+
an url and perm these tasks: checkout, extracting, bootstrapping,
|
|
1742
|
+
configuring, make {all,check,distcheck,install}, export the tarball,
|
|
1743
|
+
and clean.
|
|
1744
|
+
|
|
1745
|
+
* src/strategies/Checkout.rb: New. Use the URI extension to checkout.
|
|
1746
|
+
* src/strategies/Extract.rb: Use FileType in ruby_ex/filetype.rb.
|
|
1747
|
+
* src/strategies/Bootstrap.rb: New. Handle the bootstrap script.
|
|
1748
|
+
* src/strategies/Configure.rb: Improve.
|
|
1749
|
+
* src/strategies/Make.rb: New. Handle the `make' command with an OO
|
|
1750
|
+
target support.
|
|
1751
|
+
* src/strategies/Composite.rb: Ensure the path size save.
|
|
1752
|
+
* src/strategies/Clean.rb: Handle a list of dir not just a dir.
|
|
1753
|
+
* src/strategies/Collection.rb: Call the block after initializing.
|
|
1754
|
+
* src/strategies/CmdBase.rb: Fix and move the newline substitution in
|
|
1755
|
+
executed command.
|
|
1756
|
+
* src/strategies/Strategy.rb: Move a line.
|
|
1757
|
+
|
|
1758
|
+
* test/ttk-minimal/pkg.yml: New.
|
|
1759
|
+
* test/ressources/package/pkg_foo/configure: New.
|
|
1760
|
+
* test/ressources/package/pkg_foo/foo.sh: New.
|
|
1761
|
+
* test/ressources/package/pkg_foo/Makefile: New.
|
|
1762
|
+
* test/ressources/package/pkg_foo/bootstrap: New.
|
|
1763
|
+
* test/ressources/package/pkg_foo.tar.gz: New.
|
|
1764
|
+
* test/ttk-minimal/author.yml: Update.
|
|
1765
|
+
|
|
1766
|
+
2005-02-12 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1767
|
+
|
|
1768
|
+
* src/status.rb: New. OO version of status and summaries.
|
|
1769
|
+
* src/weights/Weight.rb: New weights, for new status.
|
|
1770
|
+
* src/weights/WExpr.rb, src/weights/WMin.rb: Update accordignly.
|
|
1771
|
+
|
|
1772
|
+
* src/strategies/Strategy.rb, src/strategies/Composite.rb,
|
|
1773
|
+
* src/strategies/SubCmd.rb, src/strategies/Test.rb,
|
|
1774
|
+
* src/strategies/RemoteCmd.rb, src/strategies/Fetcher.rb,
|
|
1775
|
+
* src/strategies/DistDispatch.rb, src/strategies/Glob.rb,
|
|
1776
|
+
* src/strategies/Authors.rb, src/strategies/Compile.rb,
|
|
1777
|
+
* src/strategies/DistDelegate.rb, src/strategies/Tester.rb,
|
|
1778
|
+
* src/strategies/Pass.rb, src/strategies/Extract.rb,
|
|
1779
|
+
* src/strategies/Ball.rb, src/strategies/Fail.rb,
|
|
1780
|
+
* src/strategies/Stub.rb, src/strategies/Configure.rb,
|
|
1781
|
+
* src/strategies/Clean.rb, src/strategies/KillAll.rb,
|
|
1782
|
+
* src/strategies/Fetch.rb, src/strategies/Error.rb,
|
|
1783
|
+
* src/strategies/JUnit.rb, src/strategies/Suite.rb,
|
|
1784
|
+
* src/strategies/Block.rb, src/strategies/Collection.rb,
|
|
1785
|
+
* src/strategies/CmdBase.rb, src/strategies/RUnit.rb,
|
|
1786
|
+
* src/strategies/Cmd/Stream.rb, src/strategies/Cmd.rb,
|
|
1787
|
+
* src/strategies/Abort.rb, src/strategies/Sleep.rb,
|
|
1788
|
+
* src/strategies/Pool.rb, src/strategies/Import.rb:
|
|
1789
|
+
Use the new status system.
|
|
1790
|
+
|
|
1791
|
+
* src/strategies/Assert.rb: Remove. pre_assertions and post_assertions
|
|
1792
|
+
are in Strategy.
|
|
1793
|
+
|
|
1794
|
+
* test/ttk-minimal/fatal.yml: Change the name of test3.
|
|
1795
|
+
* test/ttk-minimal/block.yml: Use fail() not Failure.
|
|
1796
|
+
* test/ressources/text/1.txt: Make shorter.
|
|
1797
|
+
* test/ttk-minimal/wc.yml: Update accordignly.
|
|
1798
|
+
* test/all/weight.yml: Update to new Yaml format.
|
|
1799
|
+
|
|
1800
|
+
* src/getopts/ttk.rb: Add the --dump-status option.
|
|
1801
|
+
* src/ttk: Handle the --dump-status option.
|
|
1802
|
+
|
|
1803
|
+
* src/ttk.rb: Add Weights::Default which is an alias of Weights::WFloat.
|
|
1804
|
+
* src/filters/Saver.rb: No more try to handle the status here.
|
|
1805
|
+
* src/result/ToResult.rb: Handle exceptions.
|
|
1806
|
+
|
|
1807
|
+
2005-02-08 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1808
|
+
|
|
1809
|
+
* test/ttk-minimal/pool.yml, test/ttk-minimal/base.yml,
|
|
1810
|
+
* test/examples/students/stud.yml,
|
|
1811
|
+
* test/examples/students/pool_stud.yml: Update to the new name.
|
|
1812
|
+
* src/strategies/PoolSuite.rb: Move to ...
|
|
1813
|
+
* src/strategies/Pool.rb: ... here.
|
|
1814
|
+
|
|
1815
|
+
2005-02-08 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1816
|
+
|
|
1817
|
+
* src/strategies/Composite.rb: New. Usefull when a strategy contain
|
|
1818
|
+
other strategies.
|
|
1819
|
+
* src/strategies/Collection.rb: New. Is a composite extension, it
|
|
1820
|
+
provides common attributes factorization.
|
|
1821
|
+
|
|
1822
|
+
* src/strategies/Fetch.rb,
|
|
1823
|
+
* src/strategies/Ball.rb,
|
|
1824
|
+
* src/strategies/Fetcher.rb,
|
|
1825
|
+
* src/strategies/Glob.rb,
|
|
1826
|
+
* src/strategies/Compile.rb,
|
|
1827
|
+
* src/strategies/Configure.rb,
|
|
1828
|
+
* src/strategies/Import.rb,
|
|
1829
|
+
* src/strategies/Test.rb: Is a composite.
|
|
1830
|
+
|
|
1831
|
+
* src/strategies/Suite.rb,
|
|
1832
|
+
* src/strategies/PoolSuite.rb: Is a collection.
|
|
1833
|
+
|
|
1834
|
+
* src/strategies/RemoteCmd.rb,
|
|
1835
|
+
* src/strategies/DistDispatch.rb,
|
|
1836
|
+
* src/strategies/DistDelegate.rb,
|
|
1837
|
+
* src/strategies/Stub.rb,
|
|
1838
|
+
* src/strategies/CmdBase.rb,
|
|
1839
|
+
* src/strategies/Strategy.rb,
|
|
1840
|
+
* src/result/Stream.rb,
|
|
1841
|
+
* src/strategies/SubCmd.rb: Update.
|
|
1842
|
+
|
|
1843
|
+
* test/ttk-minimal/base.yml: Add a sleep.
|
|
1844
|
+
* src/ttk.rb: Require 'thread'.
|
|
1845
|
+
* src/filters/Saver.rb: Replace root by sub root.
|
|
1846
|
+
* src/weights/WExpr.rb: New. Usefull to debug and see the summary
|
|
1847
|
+
expression.
|
|
1848
|
+
* src/weights/Weight.rb: Add pass? and fail?.
|
|
1849
|
+
|
|
1850
|
+
2005-02-08 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1851
|
+
|
|
1852
|
+
* test/ttk-dist/dist-dispatch.yml, test/ttk-dist/tester.yml,
|
|
1853
|
+
* test/ttk-dist/dist-cat.yml, test/ttk-dist/dist-suite.yml,
|
|
1854
|
+
* test/ttk-dist/dist-delegate.yml: Make their Suite ordered.
|
|
1855
|
+
|
|
1856
|
+
|
|
1857
|
+
2005-02-08 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1858
|
+
|
|
1859
|
+
* TODO: New. Describe how the new TODO works using www.feydakins.org.
|
|
1860
|
+
* NORM, README: Typo.
|
|
1861
|
+
|
|
1862
|
+
2005-02-08 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1863
|
+
|
|
1864
|
+
* TODO: Move to ...
|
|
1865
|
+
* TODO.old: ... here.
|
|
1866
|
+
* src/strategies/Strategy.rb: Add a FIXME.
|
|
1867
|
+
|
|
1868
|
+
2005-02-07 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1869
|
+
|
|
1870
|
+
* src/strategies/Strategy.rb: Add the dont_expand option to the
|
|
1871
|
+
Attribute class, and skip these attributes during the expand phase.
|
|
1872
|
+
* src/strategies/Suite.rb: Add dont_expand to the :contents attribute.
|
|
1873
|
+
* src/strategies/Test.rb, src/strategies/Fetcher.rb,
|
|
1874
|
+
* src/strategies/DistDispatch.rb, src/strategies/Glob.rb,
|
|
1875
|
+
* src/strategies/DistDelegate.rb, src/strategies/Tester.rb,
|
|
1876
|
+
* src/strategies/Ball.rb, src/strategies/Fetch.rb:
|
|
1877
|
+
Add dont_expand to the :test attribute.
|
|
1878
|
+
* src/strategies/Abort.rb: Layout.
|
|
1879
|
+
|
|
1880
|
+
2005-02-07 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1881
|
+
|
|
1882
|
+
* src/getopts/ttk.rb: Change the default loader to Yaml. For OYaml
|
|
1883
|
+
inputs use the -L OYaml option.
|
|
1884
|
+
|
|
1885
|
+
2005-02-07 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1886
|
+
|
|
1887
|
+
* test/ttk-minimal/killall.yml: Set weights correctly and add a test.
|
|
1888
|
+
|
|
1889
|
+
2005-02-07 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1890
|
+
|
|
1891
|
+
* test/examples-suite.yml: Need at least a filename one char long.
|
|
1892
|
+
* test/ttk-minimal/glob.yml, test/ttk-minimal/killall.yml,
|
|
1893
|
+
* test/ttk-minimal/timeout.yml, test/ttk-minimal/fatal.yml,
|
|
1894
|
+
* test/ttk-minimal/sub.yml, test/ttk-minimal/block.yml,
|
|
1895
|
+
* test/ttk-minimal/author.yml, test/ttk-minimal/cat.yml,
|
|
1896
|
+
* test/ttk-minimal/diff.yml, test/ttk-minimal/wc.yml,
|
|
1897
|
+
* test/ttk-minimal/exit.yml, test/ttk-minimal/pool.yml,
|
|
1898
|
+
* test/ttk-minimal/base.yml, test/ttk-minimal/import.yml,
|
|
1899
|
+
* test/ttk-minimal/env_cmd.yml, test/all.yml, test/ttk-dist-suite.yml,
|
|
1900
|
+
* test/ttk-minimal-suite.yml, test/examples/students/stud.yml,
|
|
1901
|
+
* test/examples/students/mini-lib.yml,
|
|
1902
|
+
* test/examples/students/glob_stud.yml,
|
|
1903
|
+
* test/examples/students/pool_stud.yml: Adapt to the new input format
|
|
1904
|
+
in order to be more deterministic.
|
|
1905
|
+
* src/strategies/Suite.rb: Ensure @saved_path is defined. It may not be
|
|
1906
|
+
defined if the suite is interrupted during its prologue.
|
|
1907
|
+
* src/strategies/CmdBase.rb: Ensure @pid is defined. It may not be
|
|
1908
|
+
defined if the suite is interrupted during its initialization.
|
|
1909
|
+
|
|
1910
|
+
2005-02-07 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1911
|
+
|
|
1912
|
+
* src/ttkd, src/strategies/DistDispatch.rb,
|
|
1913
|
+
* src/strategies/DistDelegate.rb, src/strategies/CmdBase.rb,
|
|
1914
|
+
* src/strategies/Strategy.rb, src/strategies/Sleep.rb: Raises an
|
|
1915
|
+
ArgumentError instead of a RuntimeError.
|
|
1916
|
+
* src/strategies/Suite.rb: 80 columns.
|
|
1917
|
+
|
|
1918
|
+
2005-02-07 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1919
|
+
|
|
1920
|
+
* NORM: Add a rule for the logger utilization.
|
|
1921
|
+
|
|
1922
|
+
2005-02-06 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1923
|
+
|
|
1924
|
+
* src/daemons/daemon/logger.rb: No longer use pp since a
|
|
1925
|
+
SystemStackError is raised when pretty printing a strategy result.
|
|
1926
|
+
* src/testers/Tester.rb: Notify the strategy's result.
|
|
1927
|
+
* src/monitors/client.rb: Print the time and the strategy's result.
|
|
1928
|
+
* src/monitors/monitor.rb: Include the notification time in when
|
|
1929
|
+
notifing external observers.
|
|
1930
|
+
|
|
1931
|
+
2005-02-06 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1932
|
+
|
|
1933
|
+
* src/ttk: Avoid to duplicate the class name of the symtbl.
|
|
1934
|
+
* src/strategies/DistDelegate.rb: Prints a warning rather than raises
|
|
1935
|
+
an exception if no sub_testers are available.
|
|
1936
|
+
|
|
1937
|
+
2005-02-03 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1938
|
+
|
|
1939
|
+
* src/strategies/Strategy.rb, src/strategies/Sleep.rb: Raise an
|
|
1940
|
+
error if the time value is negative.
|
|
1941
|
+
|
|
1942
|
+
2005-02-03 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1943
|
+
|
|
1944
|
+
* src/strategies/Strategy.rb: Remove debugging code.
|
|
1945
|
+
* NORM: Remove methods visibility rule.
|
|
1946
|
+
|
|
1947
|
+
2005-02-02 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1948
|
+
|
|
1949
|
+
* NORM: Correct english mistakes.
|
|
1950
|
+
|
|
1951
|
+
2005-02-02 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1952
|
+
|
|
1953
|
+
* test/ttk-minimal/base.yml: Add a test.
|
|
1954
|
+
* src/strategies/Suite.rb: chnode(contents) in prologue.
|
|
1955
|
+
* src/strategies/CmdBase.rb: Makes abort_hook protected.
|
|
1956
|
+
* src/strategies/Strategy.rb: Make abort prettier.
|
|
1957
|
+
* NORM: Update to the new real norm of ttk.
|
|
1958
|
+
|
|
1959
|
+
2005-02-02 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1960
|
+
|
|
1961
|
+
* test/ttk-minimal/killall.yml: Add a fixme.
|
|
1962
|
+
* test/ttk-minimal/pass.yml: Remove. Deprecated because of base.yml.
|
|
1963
|
+
* test/ttk-minimal/pool.yml: Makes it 99.9% deterministic.
|
|
1964
|
+
* test/ttk-minimal/base.yml: New. Test the basic features of ttk.
|
|
1965
|
+
* src/strategies/Pass.rb: English.
|
|
1966
|
+
* src/strategies/Fail.rb: No more specific Failure exception since
|
|
1967
|
+
it's useless for such a simple strategy.
|
|
1968
|
+
* src/strategies/PoolSuite.rb, src/strategies/Suite.rb,
|
|
1969
|
+
* src/strategies/CmdBase.rb: Manage abort properly.
|
|
1970
|
+
* src/strategies/Strategy.rb: Clean up exception management, test
|
|
1971
|
+
termination and timeout management.
|
|
1972
|
+
* src/strategies/Abort.rb: New. Strategy which always abort.
|
|
1973
|
+
* src/strategies/Sleep.rb: New. A Sleep strategy to avoid.
|
|
1974
|
+
* src/result/Stream.rb: Bug half fixed in chnode.
|
|
1975
|
+
|
|
1976
|
+
2005-02-01 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1977
|
+
|
|
1978
|
+
* template/new_strategy.rb: New. See the HOWTO line, to make a new
|
|
1979
|
+
strategy for TTK.
|
|
1980
|
+
|
|
1981
|
+
2005-02-01 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
1982
|
+
|
|
1983
|
+
* src/strategies/SubCmd.rb: Use the new loader.
|
|
1984
|
+
* src/dumpers/Notif.rb:
|
|
1985
|
+
New. A loader usefull for an internal but fully ordered output.
|
|
1986
|
+
* src/loaders/OYaml.rb, src/loaders/Yaml.rb:
|
|
1987
|
+
Fix a bug with the yaml node traverse.
|
|
1988
|
+
* src/filters/Saver.rb: Improve, and update.
|
|
1989
|
+
* src/strategies/CmdBase.rb:
|
|
1990
|
+
Add a new method to delegate the command creation.
|
|
1991
|
+
* src: Changed svn:externals property to refer to svn.feydakins.org.
|
|
1992
|
+
|
|
1993
|
+
2005-02-01 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1994
|
+
|
|
1995
|
+
* src/ttkm, src/ttkd: --version prints a shorter date.
|
|
1996
|
+
|
|
1997
|
+
2005-01-30 Nicolas Despres <polrop@lrde.epita.fr>
|
|
1998
|
+
|
|
1999
|
+
* src/getopts/ttkd.rb: Add --rb-safe option to set the security level
|
|
2000
|
+
(1 is the default value).
|
|
2001
|
+
* src/daemons/Daemon.rb: Do not always set the security level to 2.
|
|
2002
|
+
* src/ttk.rb: Typo.
|
|
2003
|
+
* src/ttkd: Set the security level after the daemon's initialization.
|
|
2004
|
+
* src/strategies/Cmd.rb: Load only file with an .rb extension to avoid
|
|
2005
|
+
backup files for example.
|
|
2006
|
+
|
|
2007
|
+
2005-01-30 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2008
|
+
|
|
2009
|
+
* src/ttkm: Freeze $PROGRAME_NAME and remove $VERBOSE = false.
|
|
2010
|
+
* src/getopts/ttk.rb: Uses a sub_module implemented in the same class.
|
|
2011
|
+
* src/daemons/daemon/logger.rb: Use DLogger to be compatible with ttk.
|
|
2012
|
+
* src/testers/tester/config.rb: Force to use the Config constant
|
|
2013
|
+
from the upper namespace.
|
|
2014
|
+
* src/ttk: Introduced config.rb contents.
|
|
2015
|
+
* src/ttk.rb: No more use of config.rb. Use autoload_tree.
|
|
2016
|
+
* src/ttkd: Store the logger in the LOG constant to be compatible with
|
|
2017
|
+
ttk.
|
|
2018
|
+
* src/config.rb: Remove. No longer required.
|
|
2019
|
+
|
|
2020
|
+
|
|
2021
|
+
2005-01-30 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2022
|
+
|
|
2023
|
+
* src/dumpers/Dumper.rb, src/filters/Filter.rb, src/loaders/Loader.rb,
|
|
2024
|
+
* src/strategies/Strategy.rb: Abstract classes.
|
|
2025
|
+
* src/dumpers/Xml.rb, src/dumpers/Yaml.rb, src/loaders/OYaml.rb,
|
|
2026
|
+
* src/loaders/YamlOld.rb, src/loaders/Yaml.rb, src/filters/Saver.rb,
|
|
2027
|
+
* src/filters/BasicLogger.rb, src/strategies/Test.rb,
|
|
2028
|
+
* src/strategies/Fetcher.rb, src/strategies/DistDispatch.rb,
|
|
2029
|
+
* src/strategies/Glob.rb, src/strategies/Authors.rb,
|
|
2030
|
+
* src/strategies/Compile.rb, src/strategies/DistDelegate.rb,
|
|
2031
|
+
* src/strategies/Tester.rb, src/strategies/Pass.rb,
|
|
2032
|
+
* src/strategies/Extract.rb, src/strategies/Ball.rb,
|
|
2033
|
+
* src/strategies/Fail.rb, src/strategies/Stub.rb,
|
|
2034
|
+
* src/strategies/Configure.rb, src/strategies/Clean.rb,
|
|
2035
|
+
* src/strategies/KillAll.rb, src/strategies/JUnit.rb,
|
|
2036
|
+
* src/strategies/Suite.rb, src/strategies/Error.rb,
|
|
2037
|
+
* src/strategies/Fetch.rb, src/strategies/Block.rb,
|
|
2038
|
+
* src/strategies/RUnit.rb, src/strategies/Cmd.rb,
|
|
2039
|
+
* src/strategies/Import.rb: Concrete classes.
|
|
2040
|
+
* src/ttk.rb: Requires abstract.rb.
|
|
2041
|
+
* src/monitors/monitor.rb: Correct english mistakes in the FIXME.
|
|
2042
|
+
|
|
2043
|
+
2005-01-29 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2044
|
+
|
|
2045
|
+
* src/monitors/monitor.rb: Timeout notifications to remote observers.
|
|
2046
|
+
Required since we don't know how is implemented a monitor client.
|
|
2047
|
+
|
|
2048
|
+
|
|
2049
|
+
2005-01-29 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2050
|
+
|
|
2051
|
+
* src/getopts/ttk.rb: Remove the shebang line (sorry I did a mistake
|
|
2052
|
+
with the previous pathc).
|
|
2053
|
+
* src/monitors/monitor.rb: Use a thread to notify remote observers.
|
|
2054
|
+
This way the server do not block if a the client take time to deal
|
|
2055
|
+
with the notification.
|
|
2056
|
+
|
|
2057
|
+
2005-01-29 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2058
|
+
|
|
2059
|
+
* src/getopts/ttkm.rb, src/getopts/ttkd.rb: Remove shebang line.
|
|
2060
|
+
* src/ttk: Move getopts to ...
|
|
2061
|
+
* src/getopts/ttk.rb: ... here.
|
|
2062
|
+
* src/config.rb: Assign $PROGRAME_NAME.
|
|
2063
|
+
|
|
2064
|
+
2005-01-29 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2065
|
+
|
|
2066
|
+
* src/ttkm: Print more informations.
|
|
2067
|
+
* src/dumpable_doc.rb: Move to ...
|
|
2068
|
+
* src/doc.rb: ... here.
|
|
2069
|
+
* src/testers/Tester.rb, src/testers/Master.rb: Remove
|
|
2070
|
+
select_tester_eval.
|
|
2071
|
+
* src/strategies/DistDispatch.rb: Use select_tester and DumpableDoc ->
|
|
2072
|
+
Doc.
|
|
2073
|
+
* src/ttk.rb, src/strategies/DistDelegate.rb, src/strategies/Tester.rb:
|
|
2074
|
+
DumpableDoc -> Doc.
|
|
2075
|
+
* src/monitors/client.rb: Change the fixme.
|
|
2076
|
+
|
|
2077
|
+
2005-01-29 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2078
|
+
|
|
2079
|
+
* src/services/fetcher_client.rb: No more front.
|
|
2080
|
+
* src/strategies/Fetch.rb: Use the client this there's no more front.
|
|
2081
|
+
|
|
2082
|
+
2005-01-29 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2083
|
+
|
|
2084
|
+
* test/ttk-dist-suite.yml: Add monitor service uri.
|
|
2085
|
+
* src/ttkm: New. Driver for the client monitor.
|
|
2086
|
+
* src/services/monitor_server.rb: New. Service for the monitor server.
|
|
2087
|
+
* src/services/fetcher_client.rb: Add a fixme.
|
|
2088
|
+
* src/services/monitor_client.rb: New. Service for the monitor client.
|
|
2089
|
+
* src/services/drb_service.rb: Don't add a message type when
|
|
2090
|
+
forwarding notification from the front.
|
|
2091
|
+
* src/getopts/ttkm.rb: New. GetOpts for the monitor client driver.
|
|
2092
|
+
* src/getopts/ttkd.rb: Reorganize sections. Add option for the monitor
|
|
2093
|
+
service.
|
|
2094
|
+
* src/daemons/Daemon.rb: Start the monitor service.
|
|
2095
|
+
* src/testers/Tester.rb: Change notification message.
|
|
2096
|
+
* src/ttk: Remove commented statement.
|
|
2097
|
+
* src/ttkd: Require ttk.rb and remove useless statement.
|
|
2098
|
+
* src/monitors: New. Contains monitors front and classes.
|
|
2099
|
+
* src/monitors/client.rb: New. A monitor client.
|
|
2100
|
+
* src/monitors/server.rb: New. A monitor server front.
|
|
2101
|
+
* src/monitors/monitor.rb: New. The real observable of the monitor
|
|
2102
|
+
server.
|
|
2103
|
+
|
|
2104
|
+
2005-01-29 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2105
|
+
|
|
2106
|
+
* src/services/tester_slave.rb: Notify the tester's name.
|
|
2107
|
+
* src/services/drb_service.rb: Forward notification from the front.
|
|
2108
|
+
* src/testers/tester/notifier.rb: New. A simple observable used by the
|
|
2109
|
+
front to notify its activity. Avoid the front to be observable itself.
|
|
2110
|
+
* src/testers/tester/query_node.rb: Manage when a query failed.
|
|
2111
|
+
* src/testers/Tester.rb: , changed property. Use a notifier to track
|
|
2112
|
+
run_strategy call.
|
|
2113
|
+
* src/ttkd: Remove commented statement.
|
|
2114
|
+
* src/strategies/KillAll.rb: Can specify the signal to send.
|
|
2115
|
+
|
|
2116
|
+
2005-01-28 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2117
|
+
|
|
2118
|
+
* src/services/tester_master.rb: Make some notifications.
|
|
2119
|
+
* src/services/drb_service.rb: Becomes observable.
|
|
2120
|
+
* src/daemons/daemon/logger.rb: Don't pretty prin info if there is not
|
|
2121
|
+
any.
|
|
2122
|
+
* src/daemons/Slave.rb, src/daemons/Master.rb: Make the tester
|
|
2123
|
+
service observable by the pool.
|
|
2124
|
+
|
|
2125
|
+
|
|
2126
|
+
2005-01-28 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2127
|
+
|
|
2128
|
+
* test/ttk-dist-suite.yml: One logger per tester.
|
|
2129
|
+
* src/daemons/daemon: New. Contains implementation of
|
|
2130
|
+
TTK::Daemons::Daemon namespace.
|
|
2131
|
+
* src/daemons/daemon/logger.rb: New. Logger for daemons.
|
|
2132
|
+
* src/daemons/Daemon.rb: $SAFE = 2.
|
|
2133
|
+
* src/ttkd: Adapt to new logger.
|
|
2134
|
+
|
|
2135
|
+
2005-01-28 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2136
|
+
|
|
2137
|
+
* test/ttk-dist/tester.yml: Uncomment test.
|
|
2138
|
+
* src/services/fetcher_client.rb, src/services/tester_slave.rb,
|
|
2139
|
+
* src/services/tester_master.rb, src/services/tester_client.rb,
|
|
2140
|
+
* src/services/fetcher_server.rb: Use TTK's version of drb_service.
|
|
2141
|
+
* src/services/drb_service.rb: New. TTK's version of drb_service.
|
|
2142
|
+
|
|
2143
|
+
|
|
2144
|
+
2005-01-28 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2145
|
+
|
|
2146
|
+
* test/ttk-dist/tester.yml: Add a test that failed on my machine when
|
|
2147
|
+
run with the all ttk-dist-suite. Works fine alone.
|
|
2148
|
+
* src/testers/tester/query_node.rb: to_result manage summary.
|
|
2149
|
+
* src/testers/Tester.rb, src/testers/Master.rb: Another version of
|
|
2150
|
+
select (try to be a bit more efficient).
|
|
2151
|
+
* src/strategies/DistDispatch.rb: Manage summary.
|
|
2152
|
+
* src/strategies/DistDelegate.rb: Typo. Call super in summary.
|
|
2153
|
+
* src/strategies/Tester.rb: Give a name to local testers.
|
|
2154
|
+
|
|
2155
|
+
2005-01-28 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2156
|
+
|
|
2157
|
+
* test/ttk-dist/tester.yml: Test the local_tester parameter of Tester.
|
|
2158
|
+
* src/strategies/Tester.rb: Fix bug.
|
|
2159
|
+
|
|
2160
|
+
2005-01-28 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2161
|
+
|
|
2162
|
+
* test/ttk-dist/dist-delegate.yml: Test nested DistDelegate.
|
|
2163
|
+
|
|
2164
|
+
2005-01-28 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2165
|
+
|
|
2166
|
+
* test/ttk-dist/tester.yml: New. A little test suite for the Tester
|
|
2167
|
+
strategy.
|
|
2168
|
+
* test/ttk-dist/dist-delegate.yml: Test nested Tester/DistDelegate.
|
|
2169
|
+
* src/testers/tester/config.rb: Fix a bug.
|
|
2170
|
+
* src/testers/Tester.rb, src/ttk: Do not keep the tester service in
|
|
2171
|
+
the symtbl.
|
|
2172
|
+
* src/strategies/Fetcher.rb, src/strategies/Fetch.rb: Call super in
|
|
2173
|
+
finish.
|
|
2174
|
+
* src/strategies/DistDelegate.rb: 80 columns.
|
|
2175
|
+
* src/strategies/Tester.rb: Start one client service in the prologue
|
|
2176
|
+
and stop it in finish.
|
|
2177
|
+
|
|
2178
|
+
2005-01-28 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2179
|
+
|
|
2180
|
+
* src/strategies/Fetcher.rb: The fetcher_uri is added to the SymTbl of
|
|
2181
|
+
the sub test to avoid conflict if several Fetcher are in Pool.
|
|
2182
|
+
|
|
2183
|
+
2005-01-28 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2184
|
+
|
|
2185
|
+
* src/fetchers/client.rb: The remote fetcher is a readable attribute.
|
|
2186
|
+
* src/strategies/Fetcher.rb: Store only the fetcher uri in the SymTbl.
|
|
2187
|
+
* src/strategies/Fetch.rb: Adapt to Fetcher changes.
|
|
2188
|
+
|
|
2189
|
+
2005-01-28 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2190
|
+
|
|
2191
|
+
* src/services/fetcher_client.rb, src/services/tester_slave.rb,
|
|
2192
|
+
* src/services/tester_master.rb, src/services/tester_client.rb,
|
|
2193
|
+
* src/services/fetcher_server.rb: Become sub classes of DRbService.
|
|
2194
|
+
|
|
2195
|
+
2005-01-28 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2196
|
+
|
|
2197
|
+
* src/testers/tester/query_node.rb: :query, :args and :block are no
|
|
2198
|
+
longer accessor since there is set_query.
|
|
2199
|
+
|
|
2200
|
+
2005-01-28 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2201
|
+
|
|
2202
|
+
* src/testers/tester/query_node.rb: Use repeat instead of each/update.
|
|
2203
|
+
|
|
2204
|
+
2005-01-28 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2205
|
+
|
|
2206
|
+
* src/strategies/Suite.rb: Little simplification.
|
|
2207
|
+
* src/strategies/DistDelegate.rb: Support the summary.
|
|
2208
|
+
* src/testers/Tester.rb: Provide a remote acces to the test.
|
|
2209
|
+
* test/ttk-dist/dist-fail.yml: Put a FIXME.
|
|
2210
|
+
|
|
2211
|
+
2005-01-28 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2212
|
+
|
|
2213
|
+
* src/result/ToResult.rb: Remove useless tests and update others.
|
|
2214
|
+
|
|
2215
|
+
2005-01-28 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2216
|
+
|
|
2217
|
+
* src/strategies/DistDelegate.rb: Use the F::Saver#repeat method,
|
|
2218
|
+
to fix a bug with the ttk-dist-suite.yml.
|
|
2219
|
+
|
|
2220
|
+
2005-01-27 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2221
|
+
|
|
2222
|
+
This patch put a first step in favor of our new yaml syntax. Since we
|
|
2223
|
+
found an unsolvable bug with OYaml we try to switch to another syntax.
|
|
2224
|
+
|
|
2225
|
+
* src/dumpers/Yaml.rb: Update the output syntax.
|
|
2226
|
+
* src/loaders/OYaml.rb: Update naming.
|
|
2227
|
+
* src/loaders/YamlOld.rb: New. From Yaml.rb.
|
|
2228
|
+
* src/loaders/Yaml.rb: The new Yaml loader.
|
|
2229
|
+
* src/filters/Saver.rb: Improve.
|
|
2230
|
+
* src/strategies/SubCmd.rb: Add a fixme.
|
|
2231
|
+
* src/strategies/Tester.rb,
|
|
2232
|
+
* src/strategies/PoolSuite.rb,
|
|
2233
|
+
* src/testers/Tester.rb: Update to new Filters::Saver.
|
|
2234
|
+
* src/strategies/Import.rb,
|
|
2235
|
+
* src/strategies/Suite.rb: Update and specify the contents type.
|
|
2236
|
+
* src/result/ToResult.rb: Remove BaseNode, and add OHash support.
|
|
2237
|
+
* src/result/Stream.rb, src/result/Path.rb: Add type support.
|
|
2238
|
+
* test/examples-suite.yml,
|
|
2239
|
+
* test/ttk-minimal/glob.yml,
|
|
2240
|
+
* test/ttk-minimal/killall.yml,
|
|
2241
|
+
* test/ttk-minimal/timeout.yml,
|
|
2242
|
+
* test/ttk-minimal/author.yml,
|
|
2243
|
+
* test/ttk-minimal/pool.yml,
|
|
2244
|
+
* test/ttk-minimal/wc.yml,
|
|
2245
|
+
* test/ttk-dist-suite.yml,
|
|
2246
|
+
* test/ttk-minimal-suite.yml,
|
|
2247
|
+
* test/examples/students-suite.yml,
|
|
2248
|
+
* test/examples/students/mini-lib.yml,
|
|
2249
|
+
* test/examples/students/glob_stud.yml: Update regexp syntax.
|
|
2250
|
+
|
|
2251
|
+
2005-01-26 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2252
|
+
|
|
2253
|
+
* test/ttk-dist/local-fetch.yml: New. Test a local Fetcher/Fetch.
|
|
2254
|
+
* test/ttk-dist/cat, test/ttk-dist/cat/file.in,
|
|
2255
|
+
* test/ttk-dist/cat/file.out: New. Some resources.
|
|
2256
|
+
* test/ttk-dist/dist-cat.yml: Test cat with files.
|
|
2257
|
+
* test/ttk-minimal/author.yml: Test <<extract_dir>>.
|
|
2258
|
+
* test/ttk-dist-suite.yml: Add --force-fetch option.
|
|
2259
|
+
* src/services/fetcher_client.rb: New. Service for the fetcher client.
|
|
2260
|
+
Started by the Fetch strategy.
|
|
2261
|
+
* src/services/tester_master.rb: Use attr_reader.
|
|
2262
|
+
* src/services/fetcher_server.rb: New. Service for the fetcher server.
|
|
2263
|
+
Started by the Fetcher strategy.
|
|
2264
|
+
* src/daemons/Slave.rb: Do require uri/druby any more.
|
|
2265
|
+
* src/testers/Tester.rb: Create the sub symtbl with the good class.
|
|
2266
|
+
* src/ttk: Add --force-fetch option (mainly for debug purpose).
|
|
2267
|
+
* src/fetchers: New. Contains fetcher service fronts.
|
|
2268
|
+
* src/fetchers/client.rb: New. Front for the fetcher client.
|
|
2269
|
+
* src/fetchers/fetchers_test.rb: New. A unit test suite of the
|
|
2270
|
+
fetcher.
|
|
2271
|
+
* src/fetchers/server: New. Contains TTK::Fetchers::Server namespace.
|
|
2272
|
+
* src/fetchers/server/sender.rb: New. Send a file to a receiver.
|
|
2273
|
+
* src/fetchers/server.rb: New. Front for the fetcher server.
|
|
2274
|
+
* src/fetchers/client: New. Contains TTK::Fetchers::Client namespace.
|
|
2275
|
+
* src/fetchers/client/receiver.rb: New. Receive a file from a sender.
|
|
2276
|
+
* src/ttk.rb: Some requirements.
|
|
2277
|
+
* src/strategies/Fetcher.rb: New. Start a fetcher server and store it
|
|
2278
|
+
into the symtbl.
|
|
2279
|
+
* src/strategies/DistDelegate.rb: Factorize the tester description.
|
|
2280
|
+
* src/strategies/Tester.rb: Reorganize the code.
|
|
2281
|
+
* src/strategies/Extract.rb: Use Dir.tmpdir instead of /tmp.
|
|
2282
|
+
* src/strategies/Fetch.rb: New. Start a fetcher client and connect to
|
|
2283
|
+
the current fetcher (if any), then fetch files from it into a temporary
|
|
2284
|
+
directory. Run a strategy. Finally, remove files.
|
|
2285
|
+
* src/strategies/Suite.rb: Move tester and sub_testers assignment to
|
|
2286
|
+
Strategy.
|
|
2287
|
+
* src/strategies/Strategy.rb: Transmit the tester and the sub_testers
|
|
2288
|
+
to the test created.
|
|
2289
|
+
* src/symtbl/SymTbl.rb: Add unsync_key methods.
|
|
2290
|
+
|
|
2291
|
+
2005-01-25 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2292
|
+
|
|
2293
|
+
* test/ttk-dist/dist-delegate.yml: Test to delegate Tester.
|
|
2294
|
+
* src/services/tester_slave.rb, src/services/tester_master.rb,
|
|
2295
|
+
* src/services/tester_client.rb: Undumpable.
|
|
2296
|
+
* src/ttk: Synchronize some symtbl key.
|
|
2297
|
+
* src/strategies/Strategy.rb: Change hosted_by.
|
|
2298
|
+
* src/strategies/Tester.rb: Do not synchronize any more since the
|
|
2299
|
+
symtbl do it.
|
|
2300
|
+
* src/symtbl/SymTbl.rb: Allow to freeze and synchronize (via a mutex)
|
|
2301
|
+
some keys.
|
|
2302
|
+
|
|
2303
|
+
2005-01-25 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2304
|
+
|
|
2305
|
+
* src/testers/tester/config.rb: Add some sugar methods.
|
|
2306
|
+
|
|
2307
|
+
|
|
2308
|
+
2005-01-25 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2309
|
+
|
|
2310
|
+
* test/ttk-dist/dist-suite-fatal.yml, test/ttk-dist/dist-long.yml,
|
|
2311
|
+
* test/ttk-dist/dist-simple-dup.yml, test/ttk-dist/dist-simple.yml:
|
|
2312
|
+
Remove since there are no longer relevant.
|
|
2313
|
+
* test/ttk-dist/dist-pass.yml: Change test name.
|
|
2314
|
+
* test/ttk-dist/dist-cat.yml, test/ttk-dist/dist-suite.yml:
|
|
2315
|
+
Adapted to new design.
|
|
2316
|
+
* test/ttk-dist/dist-error.yml: New. An Error strategy in a Tester.
|
|
2317
|
+
* test/ttk-dist/dist-fail.yml: New. A Fail strategy in a Tester.
|
|
2318
|
+
* test/ttk-dist-suite.yml: Enable all test in ttk-dist/.
|
|
2319
|
+
|
|
2320
|
+
2005-01-25 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2321
|
+
|
|
2322
|
+
* test/ttk-dist/dist-dispatch.yml: New. DistDispatch test suite.
|
|
2323
|
+
* test/ttk-dist-suite.yml: Launch two slave attach to master0.
|
|
2324
|
+
* src/services/tester_slave.rb, src/services/tester_master.rb: Take the
|
|
2325
|
+
tester name in argument.
|
|
2326
|
+
* src/getopts/ttkd.rb: Add -n option to specify the tester name.
|
|
2327
|
+
* src/daemons/Slave.rb, src/daemons/Master.rb: Give the tester name to
|
|
2328
|
+
the service which is going to be started.
|
|
2329
|
+
* src/testers/tester/query_node.rb: Store the tester name and tester
|
|
2330
|
+
type in the query to avoid remote call when reporting result.
|
|
2331
|
+
* src/testers/Tester.rb: Bind tester service uri and tester config to
|
|
2332
|
+
the select block. Add `requests' that list all requests available on
|
|
2333
|
+
the tester.
|
|
2334
|
+
* src/testers/Master.rb: Adapted to QueryNode new constructor.
|
|
2335
|
+
* src/strategies/DistDispatch.rb: New. Select testers using the select
|
|
2336
|
+
code block. Then run the given strategy on every selected tester if
|
|
2337
|
+
it is a leaf.
|
|
2338
|
+
* src/strategies/Suite.rb: Transmit tester and sub_testers attributes.
|
|
2339
|
+
* src/strategies/DistDelegate.rb: Layout.
|
|
2340
|
+
|
|
2341
|
+
2005-01-25 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2342
|
+
|
|
2343
|
+
* src/testers/Tester.rb: Store the a string of the class instead of
|
|
2344
|
+
the class const in the tester_type field of the config.
|
|
2345
|
+
* src/strategies/DistDelegate.rb: Print more information about
|
|
2346
|
+
testers.
|
|
2347
|
+
* src/strategies/Strategy.rb: Start to deprecate hosted_by.
|
|
2348
|
+
|
|
2349
|
+
2005-01-25 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2350
|
+
|
|
2351
|
+
* src/testers/tester/config.rb: New. Tester config class (lazy).
|
|
2352
|
+
* src/testers/Tester.rb: Use the config class.
|
|
2353
|
+
* src/strategies/DistDelegate.rb: Remove fixme.
|
|
2354
|
+
|
|
2355
|
+
2005-01-25 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2356
|
+
|
|
2357
|
+
* test/ttk-dist-suite.yml: s/tenochtitlan/localhost/g.
|
|
2358
|
+
|
|
2359
|
+
|
|
2360
|
+
2005-01-25 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2361
|
+
|
|
2362
|
+
* test/ttk-dist/dist-delegate.yml: New. Test suite of the strategy
|
|
2363
|
+
DistDelegate.
|
|
2364
|
+
* src/strategies/DistDelegate.rb: Add a FIXME.
|
|
2365
|
+
|
|
2366
|
+
2005-01-25 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2367
|
+
|
|
2368
|
+
* test/ttk-dist-suite.yml: Adapted to the new design. Some test are
|
|
2369
|
+
not adapted yet.
|
|
2370
|
+
* src/testers/Tester.rb: require 'ttk'.
|
|
2371
|
+
* src/testers/Slave.rb, src/testers/Master.rb: Typo.
|
|
2372
|
+
* src/ttk: Do not create the client tester service all the time.
|
|
2373
|
+
* src/strategies/Strategy.rb: sub_testers description and default
|
|
2374
|
+
value.
|
|
2375
|
+
* src/strategies/Tester.rb: Start the client service if not.
|
|
2376
|
+
* src/symtbl/SymTbl.rb: include Mutex_m.
|
|
2377
|
+
* src/strategies/DistDelegate.rb: New. Run strategy in parameter on
|
|
2378
|
+
all sub testers.
|
|
2379
|
+
|
|
2380
|
+
|
|
2381
|
+
2005-01-25 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2382
|
+
|
|
2383
|
+
* src/testers/tester.rb: Move to ...
|
|
2384
|
+
* src/testers/Tester.rb: ... here.
|
|
2385
|
+
* src/testers/slave.rb: Move to ...
|
|
2386
|
+
* src/testers/Slave.rb: ... here.
|
|
2387
|
+
* src/testers/master.rb: Move to ...
|
|
2388
|
+
* src/testers/Master.rb: ... here.
|
|
2389
|
+
* src/services/tester_slave.rb, src/services/tester_master.rb,
|
|
2390
|
+
* src/strategies/Tester.rb: Adapted to the new file name.
|
|
2391
|
+
|
|
2392
|
+
|
|
2393
|
+
2005-01-25 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2394
|
+
|
|
2395
|
+
* src/ttk: Do not start client tester service.
|
|
2396
|
+
* src/strategies/Tester.rb: Start it here.
|
|
2397
|
+
|
|
2398
|
+
2005-01-24 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2399
|
+
|
|
2400
|
+
* src/testers/tester.rb: Move config initialization code to a method.
|
|
2401
|
+
|
|
2402
|
+
|
|
2403
|
+
2005-01-24 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2404
|
+
|
|
2405
|
+
* src/testers/tester: New. Contains classes/modules implemented in the
|
|
2406
|
+
namespace TTK::Testers::Tester.
|
|
2407
|
+
* src/testers/tester/query_node.rb: New. Implementation of a query
|
|
2408
|
+
node tree. Used to describe queries to a tree of testers.
|
|
2409
|
+
* src/testers/tester.rb: Bug fixes in the config initialization.
|
|
2410
|
+
Implements select_tester and query_tester. Rename init_test to
|
|
2411
|
+
test_created.
|
|
2412
|
+
* src/testers/slave.rb: Rename init_test to test_created
|
|
2413
|
+
* src/testers/master.rb: Rename init_test to test_created. Implements
|
|
2414
|
+
select_tester and query_tester.
|
|
2415
|
+
|
|
2416
|
+
|
|
2417
|
+
2005-01-24 Marco Tessari <marco.tessari@epita.fr>
|
|
2418
|
+
|
|
2419
|
+
* misc/gendoc.rb: Inline code in documentation (rdoc -S).
|
|
2420
|
+
|
|
2421
|
+
2005-01-24 Marco Tessari <marco.tessari@epita.fr>
|
|
2422
|
+
|
|
2423
|
+
* src/symtbl/SymTbl.rb: Add implementation for Array class. Don't
|
|
2424
|
+
replace unchanged Hash or Array.
|
|
2425
|
+
|
|
2426
|
+
2005-01-24 Marco Tessari <marco.tessari@epita.fr>
|
|
2427
|
+
|
|
2428
|
+
* src/strategies/Import.rb: New attribute: loader to specify what
|
|
2429
|
+
loader to use when importing.
|
|
2430
|
+
* test/all.yml: Rewrite in OYaml form, factorise and use then new
|
|
2431
|
+
Import feature, but still useless.
|
|
2432
|
+
|
|
2433
|
+
* src/strategies/Glob.rb: Symbol table must be filled before the
|
|
2434
|
+
test is instanciated.
|
|
2435
|
+
|
|
2436
|
+
* src/strategies/Suite.rb: Create can now have a block.
|
|
2437
|
+
|
|
2438
|
+
* src/strategies/Block.rb: Fix unit test.
|
|
2439
|
+
* src/strategies/Configure.rb: Clean requires.
|
|
2440
|
+
|
|
2441
|
+
* src/strategies/Compile.rb: Rewrite using suite agregation and no
|
|
2442
|
+
more inheritance.
|
|
2443
|
+
|
|
2444
|
+
* src/strategies/Authors.rb: add attribute 'file' to specify the
|
|
2445
|
+
AUTHORS file name.
|
|
2446
|
+
|
|
2447
|
+
2005-01-24 Marco Tessari <marco.tessari@epita.fr>
|
|
2448
|
+
|
|
2449
|
+
* test/all/weight.yml: Add some tests with fatal strategies and
|
|
2450
|
+
negative weights.
|
|
2451
|
+
* src/weights/Weight.rb: Don't return 0 if we have normalize(0, 0)
|
|
2452
|
+
and a nonzero suite weight. This behaviour is wanted when we have
|
|
2453
|
+
a setup fatal test at the begining of a test suite.
|
|
2454
|
+
* src/weights/WMin.rb: Change prototype.
|
|
2455
|
+
* src/strategies/Suite.rb: Weight only have to influence upper
|
|
2456
|
+
levels, not current. Remove old set_one_attribute call in UnitTest.
|
|
2457
|
+
|
|
2458
|
+
2005-01-24 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2459
|
+
|
|
2460
|
+
* src/strategies/Strategy.rb: No more convert space into underscores.
|
|
2461
|
+
* test/ttk-minimal/cat.yml, test/ttk-minimal/wc.yml: Use underscores
|
|
2462
|
+
instead of spaces for `input_from_file'...
|
|
2463
|
+
* test/ttk-minimal/import.yml: Remove a useless null weight.
|
|
2464
|
+
|
|
2465
|
+
2005-01-24 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2466
|
+
|
|
2467
|
+
* src/strategies/Cmd/Stream.rb: Use rewind and check the stream
|
|
2468
|
+
parameter value.
|
|
2469
|
+
* src/strategies/Cmd/StreamDiff.rb: Use rewind in IO#to_diff_for_result.
|
|
2470
|
+
* src/strategies/CmdBase.rb: Use TempPath.new not Tempfile.mktemp.
|
|
2471
|
+
* src/ttkd: Little fix with a bad path specification.
|
|
2472
|
+
|
|
2473
|
+
2005-01-23 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2474
|
+
|
|
2475
|
+
* DESCRIPTION: Correct english mistakes and repetition.
|
|
2476
|
+
* src/services/tester_master.rb: Remove bug statement.
|
|
2477
|
+
* src/testers/tester.rb: Rev, changed property.
|
|
2478
|
+
* src/tester.rb: Remove. Deprecated since session is no longer used.
|
|
2479
|
+
|
|
2480
|
+
|
|
2481
|
+
2005-01-23 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2482
|
+
|
|
2483
|
+
* DESCRIPTION: New. A short and a long decription of ttk.
|
|
2484
|
+
|
|
2485
|
+
|
|
2486
|
+
2005-01-23 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2487
|
+
|
|
2488
|
+
* vcs/HOWTO: New. Read it to know how to commit in TTK.
|
|
2489
|
+
* misc: Changed svn:external property, remove vcs.
|
|
2490
|
+
* misc/checkin: Remove. Deprecated.
|
|
2491
|
+
* misc/checkin.rb: Remove. Deprecated.
|
|
2492
|
+
* src/getopts: Changed svn:ignore property.
|
|
2493
|
+
* src/daemons: Changed svn:ignore property.
|
|
2494
|
+
|
|
2495
|
+
2005-01-23 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2496
|
+
|
|
2497
|
+
* src/services/tester_slave.rb, src/services/tester_master.rb,
|
|
2498
|
+
* src/services/tester_client.rb: Store the uri using a uri object
|
|
2499
|
+
instead of a string.
|
|
2500
|
+
* src/daemons/Slave.rb: Don't convert the uri object to string.
|
|
2501
|
+
* src/testers/tester.rb: Clean up and comments.
|
|
2502
|
+
* src/testers/slave.rb: Initialize the sub_tester test attributes.
|
|
2503
|
+
* src/testers/master.rb: Clean up.
|
|
2504
|
+
* src/ttk: Layout.
|
|
2505
|
+
* src/strategies/Strategy.rb: Do not parse the uri any more. Layout.
|
|
2506
|
+
* src/strategies/Tester.rb: Index slaves' DRbObject using uri object
|
|
2507
|
+
instead of uri string.
|
|
2508
|
+
|
|
2509
|
+
|
|
2510
|
+
2005-01-22 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2511
|
+
|
|
2512
|
+
* test/ttk-dist/dist-pass.yml: New. A simple test pass in a tester.
|
|
2513
|
+
* test/ttk-dist/dist-nested-pass.yml: New. A simple tester nested in
|
|
2514
|
+
a tester.
|
|
2515
|
+
* test/ttk-minimal/pass.yml: New. A pas test.
|
|
2516
|
+
* src/client.rb: Move to ...
|
|
2517
|
+
* src/services: New. Contains services. Generaly configure and create
|
|
2518
|
+
a DRuby server, but can be implemented differently.
|
|
2519
|
+
* src/services/tester_slave.rb: New. Start a slave tester service with
|
|
2520
|
+
a Testers::Slave front.
|
|
2521
|
+
* src/services/tester_master.rb: New. Start a master tester service
|
|
2522
|
+
with a Testers::Master front.
|
|
2523
|
+
* src/services/tester_client.rb: ... here. Start a DRuby service with
|
|
2524
|
+
no front.
|
|
2525
|
+
* src/getopts: New. Contains different getopts used in TTK.
|
|
2526
|
+
* src/getopts/ttkd.rb: New. Getopts for the ttk daemon driver.
|
|
2527
|
+
* src/daemons: New. Contains a hierarchy of daemons used in ttk. All
|
|
2528
|
+
daemon are started (and dynamically loaded) by the ttkd driver.
|
|
2529
|
+
* src/daemons/Daemon.rb: New. Mother class of the hierarchy (abstract).
|
|
2530
|
+
* src/daemons/Slave.rb: New. A slave daemon (concrete).
|
|
2531
|
+
* src/daemons/Master.rb: New. A master daemon (concrete).
|
|
2532
|
+
* src/dispatcher.rb: Remove. Deprecated since there is master tester.
|
|
2533
|
+
* src/testers: New. Contains a hierarchy of testers used in ttk.
|
|
2534
|
+
* src/testers/tester.rb: New. Mother class of the hierarchy (abstract).
|
|
2535
|
+
* src/testers/slave.rb: New. A slave tester (concrete).
|
|
2536
|
+
* src/testers/master.rb: New. A master tester (concrete).
|
|
2537
|
+
* src/host_selectors: Remove. Deprecated since there is the tester
|
|
2538
|
+
hierachy.
|
|
2539
|
+
* src/host_selectors/HostSelector.rb: Remove. Same reason as above.
|
|
2540
|
+
* src/ttk: Adapted to the new design. No more host selector option.
|
|
2541
|
+
Take tester uris options instead.
|
|
2542
|
+
* src/daemon: Remove. No becomes daemons hierarchy.
|
|
2543
|
+
* src/daemon/profile.rb: Remove.
|
|
2544
|
+
* src/daemon/daemon.rb: Remove.
|
|
2545
|
+
* src/daemon/server.rb: Remove.
|
|
2546
|
+
* src/daemon/tester.rb: Remove.
|
|
2547
|
+
* src/daemon/profile_tester.rb: Remove.
|
|
2548
|
+
* src/daemon/const.rb: Remove.
|
|
2549
|
+
* src/ttk.rb: No more HostSelector hierachy;
|
|
2550
|
+
* src/ttkd: Rev and Date for the --version message, changed property.
|
|
2551
|
+
* src/strategies/Strategy.rb: New 'hosted_by'. Two new attributes:
|
|
2552
|
+
tester and sub_testers.
|
|
2553
|
+
* src/strategies/RemoteSuite.rb: Remove. No longer useful this there is
|
|
2554
|
+
Strategies::Tester.
|
|
2555
|
+
* src/strategies/Tester.rb: New. Create a master tester (and optionaly
|
|
2556
|
+
attacher a slave tester to it), add it the tester uris in parameters
|
|
2557
|
+
and send it the test strategy.
|
|
2558
|
+
|
|
2559
|
+
|
|
2560
|
+
2005-01-21 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2561
|
+
|
|
2562
|
+
* src/strategies/Suite.rb: Bypass a bug, with an hidden attribute by
|
|
2563
|
+
providing access methods to the strategy attribute.
|
|
2564
|
+
|
|
2565
|
+
2005-01-21 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2566
|
+
|
|
2567
|
+
* src/strategies/Cmd/StreamDiff.rb: Just restore the real code.
|
|
2568
|
+
|
|
2569
|
+
2005-01-20 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2570
|
+
|
|
2571
|
+
* src/strategies/Suite.rb: Fix a typo in initialize.
|
|
2572
|
+
|
|
2573
|
+
2005-01-20 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2574
|
+
|
|
2575
|
+
* src/ttk: Check that result is not nil before close it.
|
|
2576
|
+
|
|
2577
|
+
2005-01-19 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2578
|
+
|
|
2579
|
+
* src/ttk: Little fix, move the ensure to a valid place.
|
|
2580
|
+
* src/dumpers/Xml.rb: Only puts CDATA in text parts.
|
|
2581
|
+
|
|
2582
|
+
2005-01-19 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2583
|
+
|
|
2584
|
+
* src/ttk: Ensure the result closing.
|
|
2585
|
+
|
|
2586
|
+
2005-01-19 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2587
|
+
|
|
2588
|
+
* src/result/Stream.rb: Add the `close' method and notification.
|
|
2589
|
+
* src/ttk: Call close on the result.
|
|
2590
|
+
* src/dumpers/Xml.rb: Clean up.
|
|
2591
|
+
|
|
2592
|
+
2005-01-17 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2593
|
+
|
|
2594
|
+
* src/ttk: No more try to convert STDIN into a Pathname,
|
|
2595
|
+
and fix a typo with server_db.
|
|
2596
|
+
|
|
2597
|
+
2005-01-14 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2598
|
+
|
|
2599
|
+
* test/ttk-dist/dist-simple-dup.yml: Use regexp
|
|
2600
|
+
* src/dispatchers/Dispatcher.rb: Move to ...
|
|
2601
|
+
* src/dispatcher.rb: New. ...here.
|
|
2602
|
+
* src/host_selectors: New. Hierarchy of host selectors
|
|
2603
|
+
* src/host_selectors/HostSelector.rb: New. Mother class of the
|
|
2604
|
+
hierarchy.
|
|
2605
|
+
* src/ttk: Provide option for to select the host selector.
|
|
2606
|
+
* src/ttk.rb: HostSelectors module instead of Dispatchers.
|
|
2607
|
+
* src/dispatchers: Remove. No longer useful.
|
|
2608
|
+
* src/dispatchers/Random.rb: Remove. HostSelector do the same now.
|
|
2609
|
+
* src/strategies/DistSuite.rb: Move to ...
|
|
2610
|
+
* src/strategies/RemoteSuite.rb: New. ... here
|
|
2611
|
+
|
|
2612
|
+
|
|
2613
|
+
2004-12-22 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2614
|
+
|
|
2615
|
+
* src/strategies/Cmd/StreamDiff.rb: New.
|
|
2616
|
+
* test/ttk-minimal/diff.yml: New.
|
|
2617
|
+
* src/strategies/Cmd.rb: Simple autoload for Cmd/*, and add
|
|
2618
|
+
the stream_class= method.
|
|
2619
|
+
* src/result/ToResult.rb: Typo.
|
|
2620
|
+
|
|
2621
|
+
2004-12-22 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2622
|
+
|
|
2623
|
+
* src/dumpers/Yaml.rb: Fix an indentation bug with multilined string.
|
|
2624
|
+
|
|
2625
|
+
2004-12-18 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2626
|
+
|
|
2627
|
+
* src/ttk: The Tempfile.close is no more needed, since
|
|
2628
|
+
mktemp use a finalizer.
|
|
2629
|
+
|
|
2630
|
+
2004-12-10 J�r�me Pouiller <jerome.pouiller@epita.fr>
|
|
2631
|
+
* src/dumpers/Xml.rb:
|
|
2632
|
+
|
|
2633
|
+
2004-12-10 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2634
|
+
|
|
2635
|
+
* test/ttk-dist/dist-simple-dup.yml: New. Suite duplicated on three
|
|
2636
|
+
servers.
|
|
2637
|
+
* test/ttk-dist/dist-suite-nested-in-pool.yml,
|
|
2638
|
+
* test/ttk-dist/dist-suite-indirect-nested.yml,
|
|
2639
|
+
* test/ttk-dist/dist-suite-nested.yml,
|
|
2640
|
+
* test/ttk-dist/dist-suite-nested-3.yml: Move to ... while ttk
|
|
2641
|
+
block with them.
|
|
2642
|
+
* test/all/dist-suite-nested-in-pool.yml,
|
|
2643
|
+
* test/all/dist-suite-indirect-nested.yml,
|
|
2644
|
+
* test/all/dist-suite-nested-3.yml,
|
|
2645
|
+
* test/all/dist-suite-nested.yml: ... here
|
|
2646
|
+
* test/ttk-dist/dist-suite.yml: Remove comment.
|
|
2647
|
+
* test/ttk-dist/dist-simple.yml: Clean up.
|
|
2648
|
+
* test/ttk-dist-suite.yml: Remove -j1 option.
|
|
2649
|
+
* src/daemon/daemon.rb: Check process uid only when daemon mode is on.
|
|
2650
|
+
* src/daemon/const.rb: Daemon mode default option and version.
|
|
2651
|
+
* src/ttkd: New option -d to switch on daemon mode.
|
|
2652
|
+
|
|
2653
|
+
2004-12-10 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2654
|
+
|
|
2655
|
+
* test/ttk-dist/dist-cat.yml: New. test Cmd in the distributed world.
|
|
2656
|
+
* src/daemon/daemon.rb, src/strategies/DistSuite.rb,
|
|
2657
|
+
* src/strategies/Strategy.rb: Adapted to the new exception pretty
|
|
2658
|
+
printer.
|
|
2659
|
+
|
|
2660
|
+
2004-12-09 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2661
|
+
|
|
2662
|
+
* test/ttk-dist/dist-long.yml: A bit longer
|
|
2663
|
+
* test/ttk-dist/dist-suite-nested-in-pool.yml: New.
|
|
2664
|
+
* test/ttk-dist/dist-suite-indirect-nested.yml: New.
|
|
2665
|
+
* test/ttk-dist/dist-suite-nested.yml: Add a pass test.
|
|
2666
|
+
* test/ttk-dist/dist-suite-nested-3.yml: New.
|
|
2667
|
+
* test/ttk-minimal/pool.yml: Add a FIXME.
|
|
2668
|
+
* src/client.rb: Do not store the tester uri as an attribute any more.
|
|
2669
|
+
Take a doc as argument instead of a test.
|
|
2670
|
+
* src/dumpable_doc.rb: New. A OHash which is DRbUndumpedIndexedObject.
|
|
2671
|
+
* src/loaders/Loader.rb: Little fixes.
|
|
2672
|
+
* src/ttk: Remove -j option, and no longer store an instance of the
|
|
2673
|
+
dispatcher in the symtbl.
|
|
2674
|
+
* src/daemon/tester.rb: Take a doc as argument and create a local
|
|
2675
|
+
PoolSuite.
|
|
2676
|
+
* src/ttk.rb: Add dumpable_doc.
|
|
2677
|
+
* src/tester.rb: Clean log message.
|
|
2678
|
+
* src/dispatchers/Dispatcher.rb: No longer take max_jobs and
|
|
2679
|
+
client_class as constructor arguments.
|
|
2680
|
+
* src/strategies/DistSuite.rb: Redone from scratch. No longuer a Suite.
|
|
2681
|
+
Send raw contents and attributes to the server.
|
|
2682
|
+
* src/strategies/PoolSuite.rb: Little fix. It can happen that the
|
|
2683
|
+
PoolSuite is aborted before it creats its thread group.
|
|
2684
|
+
* src/strategies/Suite.rb: Add a message to the exception.
|
|
2685
|
+
* src/strategies/Strategy.rb: Remade hosted_by and pretty print
|
|
2686
|
+
exception.
|
|
2687
|
+
|
|
2688
|
+
|
|
2689
|
+
2004-12-09 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2690
|
+
|
|
2691
|
+
* src/filters/BasicLogger.rb: Add a require and parenthesis.
|
|
2692
|
+
|
|
2693
|
+
2004-12-09 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2694
|
+
|
|
2695
|
+
* src/filters/BasicLogger.rb: Use the given parameter as logger
|
|
2696
|
+
only if is a Logger.
|
|
2697
|
+
|
|
2698
|
+
2004-12-09 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2699
|
+
|
|
2700
|
+
* src/ttk: Fix the --input option.
|
|
2701
|
+
|
|
2702
|
+
2004-12-09 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2703
|
+
|
|
2704
|
+
* test/ttk-dist/dist-suite-fatal.yml: New. Test FatalFailure handling.
|
|
2705
|
+
* test/ttk-dist/dist-long.yml: New. A little long suite for
|
|
2706
|
+
performance issue.
|
|
2707
|
+
* test/ttk-dist/dist-suite.yml: Use regexp.
|
|
2708
|
+
* test/ttk-dist/dist-simple.yml: Little suite with Pass, Fail, Error.
|
|
2709
|
+
* test/ttk-dist/dist-suite-nested.yml: New. Nested DistSuite.
|
|
2710
|
+
* src/daemon/tester.rb: Handle FatalFailure
|
|
2711
|
+
* src/strategies/DistSuite.rb: Use RuntimeError. No longer undumped.
|
|
2712
|
+
Little fixes.
|
|
2713
|
+
* src/strategies/KillAll.rb: Use RuntimeError.
|
|
2714
|
+
* src/strategies/Error.rb: New. A strategy which always raises an
|
|
2715
|
+
exception.
|
|
2716
|
+
* src/strategies/Strategy.rb: Handle every exception instead of only
|
|
2717
|
+
RunError.
|
|
2718
|
+
|
|
2719
|
+
|
|
2720
|
+
2004-12-09 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2721
|
+
|
|
2722
|
+
* test/ttk-dist/dist-suite.yml, test/ttk-dist/dist-simple.yml,
|
|
2723
|
+
* test/ttk-minimal/pool.yml, test/examples/students/pool_stud.yml:
|
|
2724
|
+
Rename xxx to xxxSuite.
|
|
2725
|
+
* src/strategies/DistSuite.rb: ...here
|
|
2726
|
+
* src/strategies/PoolSuite.rb: ...that
|
|
2727
|
+
* src/strategies/Dist.rb: Rename to ...
|
|
2728
|
+
* src/strategies/Pool.rb: Rename to ...
|
|
2729
|
+
|
|
2730
|
+
2004-12-09 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2731
|
+
|
|
2732
|
+
* test/ttk-dist/dist-suite.yml, test/ttk-dist/dist-simple.yml: Use the
|
|
2733
|
+
Dist strategy.
|
|
2734
|
+
* src/client.rb, src/tester.rb: Only send the test.
|
|
2735
|
+
* src/ttk: New way to create the dispatcher.
|
|
2736
|
+
* src/daemon/tester.rb: Create the result localy.
|
|
2737
|
+
* src/strategies/Strategy.rb: Clean up.
|
|
2738
|
+
* src/strategies/Dist.rb: New. A suite to distributed test over the
|
|
2739
|
+
network. Do not manage abort yet.
|
|
2740
|
+
* src/strategies/Pool.rb: Clean up and do not raise FatalFailure
|
|
2741
|
+
anymore.
|
|
2742
|
+
|
|
2743
|
+
|
|
2744
|
+
2004-12-09 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2745
|
+
|
|
2746
|
+
* src/strategies/Suite.rb: Fix a bug with the indentation and clean up.
|
|
2747
|
+
* src/strategies/Pool.rb: Temporarly fix abort.
|
|
2748
|
+
* test/ttk-minimal/glob.yml: Typo in path.
|
|
2749
|
+
|
|
2750
|
+
2004-12-08 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2751
|
+
|
|
2752
|
+
* src/strategies/Suite.rb: Use milogue_test
|
|
2753
|
+
* src/strategies/Strategy.rb: Remove the hosts attribute.
|
|
2754
|
+
* src/strategies/Pool.rb: Call {pro,mi,epi}logue_test.
|
|
2755
|
+
|
|
2756
|
+
2004-12-08 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2757
|
+
|
|
2758
|
+
* test/ttk-minimal/pool.yml, test/examples/students/pool_stud.yml: Use
|
|
2759
|
+
the new strategy Pool.
|
|
2760
|
+
* src/strategies/Suite.rb: Remove pool features.
|
|
2761
|
+
* src/strategies/Strategy.rb: Remove dispatch features
|
|
2762
|
+
* src/strategies/Pool.rb: New. A threadify suite strategy.
|
|
2763
|
+
|
|
2764
|
+
2004-12-08 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2765
|
+
|
|
2766
|
+
* src/daemon/tester.rb, src/strategies/CmdBase.rb: Clean bad comments.
|
|
2767
|
+
* src/daemon/const.rb: Use pathname.
|
|
2768
|
+
|
|
2769
|
+
2004-12-08 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2770
|
+
|
|
2771
|
+
* src/strategies/Strategy.rb: Use and update Strategy to fit with
|
|
2772
|
+
AttributedClass from ruby_ex.
|
|
2773
|
+
|
|
2774
|
+
2004-12-07 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2775
|
+
|
|
2776
|
+
* src/ttk: Change --profile label.
|
|
2777
|
+
* src/daemon/tester.rb: Logger message reorganization and some
|
|
2778
|
+
comments for later work.
|
|
2779
|
+
* src/ttkd: Change --clean label.
|
|
2780
|
+
* src/strategies/CmdBase.rb: Some none relevant statement, only for
|
|
2781
|
+
testing ttk's behavior in distributed mode.
|
|
2782
|
+
|
|
2783
|
+
2004-12-07 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2784
|
+
|
|
2785
|
+
* src/strategies/Strategy.rb: Make mandatory the strategy attribute.
|
|
2786
|
+
|
|
2787
|
+
2004-12-07 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2788
|
+
|
|
2789
|
+
* src/strategies/Cmd/Stream.rb: Change the compare stream method for IO.
|
|
2790
|
+
* test/ttk-minimal/cat.yml: New.
|
|
2791
|
+
|
|
2792
|
+
2004-12-07 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2793
|
+
|
|
2794
|
+
* src/ttk: --profile is no longer a toggle.
|
|
2795
|
+
* src/daemon/tester.rb: Layout and add a log message.
|
|
2796
|
+
* src/ttkd: --clean is no longer a toggle.
|
|
2797
|
+
|
|
2798
|
+
2004-12-07 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2799
|
+
|
|
2800
|
+
* src/client.rb, src/ttk, src/tester.rb,
|
|
2801
|
+
* src/dispatchers/Dispatcher.rb: Use TTK's salt key.
|
|
2802
|
+
* src/daemon/const.rb: Add and use TTK's salt key.
|
|
2803
|
+
|
|
2804
|
+
2004-12-07 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2805
|
+
|
|
2806
|
+
* src/client.rb: New. Main client which is connected to the main server
|
|
2807
|
+
Server.
|
|
2808
|
+
* src/daemon/tester.rb: Fix bug.
|
|
2809
|
+
* src/tester.rb: Becomes a specific client for the tester server.
|
|
2810
|
+
* src/dispatchers/Dispatcher.rb: Use TTK::Client as client.
|
|
2811
|
+
|
|
2812
|
+
2004-12-07 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2813
|
+
|
|
2814
|
+
* src/daemon/tester.rb: Typo and include Fetchable.
|
|
2815
|
+
* src/tester.rb: include Fetcher.
|
|
2816
|
+
|
|
2817
|
+
|
|
2818
|
+
2004-12-07 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2819
|
+
|
|
2820
|
+
* src/daemon/daemon.rb: Setup working directory and check uid.
|
|
2821
|
+
* src/daemon/server.rb, src/daemon/tester.rb: Use the daemon constants.
|
|
2822
|
+
* src/daemon/const.rb: New. Hold the daemon constants.
|
|
2823
|
+
* src/ttkd: Add --clean option.
|
|
2824
|
+
|
|
2825
|
+
|
|
2826
|
+
2004-12-07 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2827
|
+
|
|
2828
|
+
* src/ttk: Raise an OptionParser error if the server format is not
|
|
2829
|
+
good in -S option.
|
|
2830
|
+
|
|
2831
|
+
|
|
2832
|
+
2004-12-07 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2833
|
+
|
|
2834
|
+
* src/ttk: Add --profile option.
|
|
2835
|
+
* src/ttkd: Check needless command line arguments.
|
|
2836
|
+
|
|
2837
|
+
2004-12-07 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2838
|
+
|
|
2839
|
+
* src/loaders/Loader.rb: Clean the design.
|
|
2840
|
+
* src/ttk, src/config.rb, src/strategies/SubCmd.rb,
|
|
2841
|
+
* src/strategies/Block.rb, src/strategies/RUnit.rb,
|
|
2842
|
+
* src/strategies/Strategy.rb, src/strategies/Import.rb: Update.
|
|
2843
|
+
* src/strategies/Suite.rb: Update create, and tests.
|
|
2844
|
+
* test/ttk-minimal/pool.yml: Increase timeout.
|
|
2845
|
+
|
|
2846
|
+
2004-12-07 Nicolas Despres <polrop@lrde.epita.fr>
|
|
2847
|
+
|
|
2848
|
+
* src/ttk: Debug message when the dispatcher logout.
|
|
2849
|
+
* src/daemon/profile.rb: New. Session user profile used in the main
|
|
2850
|
+
server.
|
|
2851
|
+
* src/daemon/daemon.rb: Adapt options initialisation.
|
|
2852
|
+
* src/daemon/tester.rb: Now a subserver with only the request testme.
|
|
2853
|
+
* src/daemon/profile_tester.rb: New. Session user profile used in
|
|
2854
|
+
the tester.
|
|
2855
|
+
* src/daemon/server.rb: New. Main server class.
|
|
2856
|
+
* src/tester.rb: Start a tester at the first testme, connect to it
|
|
2857
|
+
and request testme on it.
|
|
2858
|
+
* src/dispatchers/Dispatcher.rb: Delete useless code.
|
|
2859
|
+
* src/strategies/Strategy.rb: Temporary error handling. Use
|
|
2860
|
+
result[:reason] rather than result.reason in RunError.
|
|
2861
|
+
|
|
2862
|
+
2004-12-07 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2863
|
+
|
|
2864
|
+
* src/ttk: OYaml become the default Loader.
|
|
2865
|
+
* test/ttk-minimal/sub.yml: Update.
|
|
2866
|
+
* test/ttk-dist-suite.yml: Update.
|
|
2867
|
+
* src/strategies/KillAll.rb: Typo.
|
|
2868
|
+
|
|
2869
|
+
2004-12-06 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2870
|
+
|
|
2871
|
+
* src/strategies/CmdBase.rb: Fix the bug with the process killing,
|
|
2872
|
+
you must obtain 100% at the minimal test suite.
|
|
2873
|
+
* src/dumpers/Yaml.rb: Fix a bug, remove gsub! which not return self
|
|
2874
|
+
when do not match.
|
|
2875
|
+
* test/ttk-minimal/timeout.yml, test/ttk-minimal/pool.yml,
|
|
2876
|
+
* test/ttk-minimal/wc.yml, test/ttk-dist-suite.yml: Use KillAll.
|
|
2877
|
+
|
|
2878
|
+
2004-12-06 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2879
|
+
|
|
2880
|
+
* src/strategies/KillAll.rb: Stock the pid list and fail when
|
|
2881
|
+
the strategy kill at least a process.
|
|
2882
|
+
* test/ttk-minimal/killall.yml: Update.
|
|
2883
|
+
|
|
2884
|
+
2004-12-06 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2885
|
+
|
|
2886
|
+
* src/strategies/KillAll.rb: New.
|
|
2887
|
+
* test/ttk-minimal/killall.yml: New.
|
|
2888
|
+
|
|
2889
|
+
2004-12-06 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2890
|
+
|
|
2891
|
+
* test/ttk-minimal-suite.yml: Use the import strategy.
|
|
2892
|
+
* test/examples: New. Directory for tests examples.
|
|
2893
|
+
* test/examples-suite.yml: New.
|
|
2894
|
+
* test/examples/students-suite.yml: New.
|
|
2895
|
+
* test/all/text: Rename to ...
|
|
2896
|
+
* test/ressources/text: ... this.
|
|
2897
|
+
* test/mini-lib: Rename to ...
|
|
2898
|
+
* test/ressources/mini-lib: ... this.
|
|
2899
|
+
* test/all/ball: Rename to ...
|
|
2900
|
+
* test/ressources/ball: ... this.
|
|
2901
|
+
* test/all/stud.yml: Rename to ...
|
|
2902
|
+
* test/examples/students/stud.yml: ... this, and upgrade to OYaml.
|
|
2903
|
+
* test/all/mini-lib.yml: Rename to ...
|
|
2904
|
+
* test/examples/students/mini-lib.yml: ... this, OYaml.
|
|
2905
|
+
* test/all/glob_stud.yml: Rename to ...
|
|
2906
|
+
* test/examples/students/glob_stud.yml: ... this, OYaml.
|
|
2907
|
+
* test/all/pool_stud.yml: Rename to ...
|
|
2908
|
+
* test/examples/students/pool_stud.yml: ... this, OYaml.
|
|
2909
|
+
* test/all/ball.yml: Rename to ...
|
|
2910
|
+
* test/examples/students/ball.yml: ... this, OYaml.
|
|
2911
|
+
* test/ttk-minimal/author.yml: Update.
|
|
2912
|
+
* test/ttk-minimal/wc.yml: Update.
|
|
2913
|
+
|
|
2914
|
+
2004-12-06 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2915
|
+
|
|
2916
|
+
* src/loaders/Loader.rb: Handle Pathname in pre_load.
|
|
2917
|
+
* src/strategies/Suite.rb: Use @symtbl.class instead of symtbl.class.
|
|
2918
|
+
* src/strategies/Cmd: Changed property.
|
|
2919
|
+
* src/symtbl: Changed property.
|
|
2920
|
+
|
|
2921
|
+
2004-12-06 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2922
|
+
|
|
2923
|
+
* src/strategies/Import.rb: New strategy which load another test file.
|
|
2924
|
+
* test/ttk-minimal/import.yml: New.
|
|
2925
|
+
|
|
2926
|
+
2004-12-04 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2927
|
+
|
|
2928
|
+
* test/ttk-minimal/glob.yml: Update the regexp format.
|
|
2929
|
+
* test/ttk-minimal/wc.yml: Use regexps to avoid some problems with
|
|
2930
|
+
`wc' on differents architecture.
|
|
2931
|
+
* test/ttk-minimal/sub.yml: No more the %o option.
|
|
2932
|
+
* src/dumpers/Yaml.rb: Change regexp pretty-printing,
|
|
2933
|
+
and replace '' by "".
|
|
2934
|
+
* src/loaders/OYaml.rb: Compile a Regexp when found a string like /.*/.
|
|
2935
|
+
* src/ttk.rb: Remove the SymTbl extension.
|
|
2936
|
+
* src/strategies/SubCmd.rb: Update to new command.
|
|
2937
|
+
* src/strategies/Glob.rb: Make a Regexp if needed.
|
|
2938
|
+
* src/strategies/Suite.rb: Do not use directly SymTbl.
|
|
2939
|
+
* src/strategies/Block.rb,
|
|
2940
|
+
* src/ttk: Use a TTK::SymTbl instead of a SymTbl.
|
|
2941
|
+
* src/strategies/Cmd.rb,
|
|
2942
|
+
* src/strategies/CmdBase.rb: Redesing and clean up.
|
|
2943
|
+
* src/strategies/Cmd/Stream.rb: New.
|
|
2944
|
+
* src/strategies/Strategy.rb: Update to new symtbl substitution
|
|
2945
|
+
system and clean up the attributes layout.
|
|
2946
|
+
* src/strategies/Extract.rb: @tarball is a pathname.
|
|
2947
|
+
* src/symtbl/SymTbl.rb: New, SymTbl sub class is DRbUndumped, and
|
|
2948
|
+
have generic substution system.
|
|
2949
|
+
|
|
2950
|
+
2004-12-03 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2951
|
+
|
|
2952
|
+
* src/config.rb: Define ABS_ME the absolute path for $0.
|
|
2953
|
+
* src/strategies/SubCmd.rb: Use ABS_ME.
|
|
2954
|
+
* test/ttk-dist-suite.yml: Use SubCmd.
|
|
2955
|
+
|
|
2956
|
+
2004-12-03 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2957
|
+
|
|
2958
|
+
* src/dumpers/Yaml.rb: Use source to print the regex.
|
|
2959
|
+
|
|
2960
|
+
2004-12-03 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2961
|
+
|
|
2962
|
+
* test/ttk-minimal/sub.yml, test/ttk-minimal-suite.yml: Use SubCmd.
|
|
2963
|
+
* test/ttk-dist-suite.yml: Do not use logfiles.
|
|
2964
|
+
* src/strategies/Cmd.rb: Remove the sub mode.
|
|
2965
|
+
* src/strategies/SubCmd.rb:
|
|
2966
|
+
New Cmd sub class, which runs sub ttk instances.
|
|
2967
|
+
|
|
2968
|
+
2004-12-03 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2969
|
+
|
|
2970
|
+
* test/ttk-dist-suite.yml: New.
|
|
2971
|
+
* test/ttk-minimal/dist-suite.yml: Rename to ...
|
|
2972
|
+
* test/ttk-dist/dist-suite.yml: ... this.
|
|
2973
|
+
* test/all/dist-simple.yml: Rename to ...
|
|
2974
|
+
* test/ttk-dist/dist-simple.yml: ... this.
|
|
2975
|
+
* src/weights/Weight.rb: Return pass in specific case.
|
|
2976
|
+
* src/strategies/Cmd.rb: Fix sub mode.
|
|
2977
|
+
|
|
2978
|
+
|
|
2979
|
+
2004-12-02 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2980
|
+
|
|
2981
|
+
Update svn:keywords and svn:ignore properties.
|
|
2982
|
+
|
|
2983
|
+
2004-12-02 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2984
|
+
|
|
2985
|
+
* misc/gendoc.rb: Update.
|
|
2986
|
+
|
|
2987
|
+
2004-12-02 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2988
|
+
|
|
2989
|
+
* src/strategies/Strategy.rb: Use the non greedy operator *? and a
|
|
2990
|
+
block to make the good subsitution.
|
|
2991
|
+
* test/ttk-minimal/env_cmd.yml: Add a test.
|
|
2992
|
+
|
|
2993
|
+
2004-12-02 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
2994
|
+
|
|
2995
|
+
* src/strategies/CmdBase.rb:
|
|
2996
|
+
Fix a bug with the timeout.
|
|
2997
|
+
Which occurs when a test (A) which contains `Cmd' tests (B, C).
|
|
2998
|
+
When A timeout, B or C catch the exception.
|
|
2999
|
+
|
|
3000
|
+
2004-12-02 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3001
|
+
|
|
3002
|
+
* src/strategies/Suite.rb: Typo on a instance variable name.
|
|
3003
|
+
* src/weights/WFloat.rb: Use floor instead of round.
|
|
3004
|
+
|
|
3005
|
+
2004-12-01 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3006
|
+
|
|
3007
|
+
* test/all/dist-suite.yml: Rename to ...
|
|
3008
|
+
* test/ttk-minimal/dist-suite.yml: ... this, and update to OYaml.
|
|
3009
|
+
* src/dispatchers/Dispatcher.rb: Add select_and_choose.
|
|
3010
|
+
* src/strategies/Strategy.rb: Factor code.
|
|
3011
|
+
|
|
3012
|
+
2004-12-01 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3013
|
+
|
|
3014
|
+
* src/result/Path.rb: New.
|
|
3015
|
+
* src/result/Stream.rb: Use Path.
|
|
3016
|
+
|
|
3017
|
+
2004-11-29 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3018
|
+
|
|
3019
|
+
Add the ttk-minimal-suite, moving some tests from all,
|
|
3020
|
+
and convert them in OYaml.
|
|
3021
|
+
|
|
3022
|
+
This suite is directory independant, and must be run
|
|
3023
|
+
before each patch, you must obtain 100%.
|
|
3024
|
+
|
|
3025
|
+
* test/ttk-minimal-suite.yml: New.
|
|
3026
|
+
* test/all/author.yml: Rename to ...
|
|
3027
|
+
* test/ttk-minimal/author.yml: ... this.
|
|
3028
|
+
* test/all/glob.yml: Rename to ...
|
|
3029
|
+
* test/ttk-minimal/glob.yml: ... this.
|
|
3030
|
+
* test/all/timeout.yml: Rename to ...
|
|
3031
|
+
* test/ttk-minimal/timeout.yml: ... this.
|
|
3032
|
+
* test/all/fatal.yml: Rename to ...
|
|
3033
|
+
* test/ttk-minimal/fatal.yml: ... this.
|
|
3034
|
+
* test/all/exit.yml: Rename to ...
|
|
3035
|
+
* test/ttk-minimal/exit.yml: ... this.
|
|
3036
|
+
* test/all/pool.yml: Rename to ...
|
|
3037
|
+
* test/ttk-minimal/pool.yml: ... this.
|
|
3038
|
+
* test/all/wc.yml: Rename to ...
|
|
3039
|
+
* test/ttk-minimal/wc.yml: ... this.
|
|
3040
|
+
* test/all/sub.yml: Rename to ...
|
|
3041
|
+
* test/ttk-minimal/sub.yml: ... this.
|
|
3042
|
+
* test/all/block.yml: Rename to ...
|
|
3043
|
+
* test/ttk-minimal/block.yml: ... this.
|
|
3044
|
+
* test/ttk-minimal/env_cmd.yml: ... this.
|
|
3045
|
+
* test/all/env_cmd.yml: Rename to ...
|
|
3046
|
+
|
|
3047
|
+
2004-11-29 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3048
|
+
|
|
3049
|
+
* src/dumpers/Yaml.rb:
|
|
3050
|
+
Clean the strategy dump, and dump OHash like Hash.
|
|
3051
|
+
* src/ttk: Put the pwd in the symtbl.
|
|
3052
|
+
* src/ttk.rb: SymTbl is DRbUndumped in ttk.
|
|
3053
|
+
* src/loaders/OYaml.rb: Delegate other transformations to yaml.
|
|
3054
|
+
* src/dispatchers/Dispatcher.rb: Use constants and not variables.
|
|
3055
|
+
* src/strategies/Glob.rb: Renaming.
|
|
3056
|
+
* src/strategies/Suite.rb, src/loaders/Loader.rb: Set the pwd.
|
|
3057
|
+
* src/strategies/Strategy.rb: Replace @failed by @status, provide a
|
|
3058
|
+
temporary implentation of host_dispatcher, and replace
|
|
3059
|
+
host_{attribute,values} by hosts.
|
|
3060
|
+
* src/strategies/Cmd.rb: Update status, and fix summary in sub mode.
|
|
3061
|
+
* src/strategies/CmdBase.rb, src/strategies/Assert.rb:
|
|
3062
|
+
Update status..
|
|
3063
|
+
|
|
3064
|
+
2004-11-29 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3065
|
+
|
|
3066
|
+
* src/daemon/daemon.rb: Remove ttk requirement.
|
|
3067
|
+
* src/daemon/tester.rb: Add a fixme.
|
|
3068
|
+
* src/ttkd: Add --workdir option.
|
|
3069
|
+
* src/strategies/Strategy.rb: Include DRb::DRbUndumpedAttributes.
|
|
3070
|
+
* src/ruby_ex/symtbl.rb: include DRb::DRbUndumped.
|
|
3071
|
+
|
|
3072
|
+
2004-11-29 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3073
|
+
|
|
3074
|
+
* src/strategies/Strategy.rb: No longer perform a double
|
|
3075
|
+
Marshal.dump to dump a Strategy.
|
|
3076
|
+
|
|
3077
|
+
2004-11-29 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3078
|
+
|
|
3079
|
+
* src/ttkd: Remove 'DISPATCHER = nil'
|
|
3080
|
+
* src/strategies/Strategy.rb: Remove dead code in _dump.
|
|
3081
|
+
|
|
3082
|
+
2004-11-29 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3083
|
+
|
|
3084
|
+
* src/ttk, src/daemon/tester.rb: No longer use DISPATCHER.
|
|
3085
|
+
* src/tester.rb: Remove hooks.
|
|
3086
|
+
* src/strategies/Strategy.rb: Properly dumped.
|
|
3087
|
+
|
|
3088
|
+
2004-11-27 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3089
|
+
|
|
3090
|
+
* src/loaders/Yaml.rb: Add backward compatibility.
|
|
3091
|
+
* src/loaders/OYaml.rb,
|
|
3092
|
+
* src/dispatchers/Dispatcher.rb,
|
|
3093
|
+
* src/strategies/Configure.rb,
|
|
3094
|
+
* src/strategies/Suite.rb,
|
|
3095
|
+
* src/strategies/Strategy.rb,
|
|
3096
|
+
* src/strategies/Ball.rb,
|
|
3097
|
+
* src/strategies/Extract.rb,
|
|
3098
|
+
* src/result/Stream.rb: Use :strategy, not :class.
|
|
3099
|
+
|
|
3100
|
+
2004-11-27 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3101
|
+
|
|
3102
|
+
* src/ttk: Use a constant for the dispatcher instead of the symtbl
|
|
3103
|
+
beacause the dispatcher is undumable so we cannot include it in the
|
|
3104
|
+
symtbl.
|
|
3105
|
+
* src/daemon/daemon.rb: Add require 'ttk'.
|
|
3106
|
+
* src/daemon/tester.rb: Likewise. Set the dispatcher constant.
|
|
3107
|
+
* src/ttk.rb (sub_modules): Sort sub modules.
|
|
3108
|
+
* src/ttkd (getopts): Factor the verbose option.
|
|
3109
|
+
* src/strategies/Strategy.rb: Use the dispatcher constant to
|
|
3110
|
+
dispatch and temporary change the result using convention, because
|
|
3111
|
+
missing_method doesn't pass through druby.
|
|
3112
|
+
* src/weights/Weight.rb (to_yaml): Transmit the parameter.
|
|
3113
|
+
|
|
3114
|
+
2004-11-26 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3115
|
+
|
|
3116
|
+
* test/all/dist-simple.yml: New. Simple example of a distributed pass
|
|
3117
|
+
test.
|
|
3118
|
+
* test/all/dist-suite.yml: New. Simple example of distributed suite.
|
|
3119
|
+
* src/ttk: Clean up options parser.
|
|
3120
|
+
* src/daemon/daemon.rb: Remove start_logger.
|
|
3121
|
+
* src/daemon/tester.rb: Log received test.
|
|
3122
|
+
* src/ttk.rb: Remove module Daemon.
|
|
3123
|
+
* src/ttkd: Create a logger and parse options.
|
|
3124
|
+
* src/ttkd.rb: Remove. No longer usefull and introduce a nasty bug.
|
|
3125
|
+
* src/tester.rb: Do not require daemon/tester any more (Temporary).
|
|
3126
|
+
* src/dispatchers/Dispatcher.rb: Log available server. Do not require
|
|
3127
|
+
daemon/tester any more (Temporary).
|
|
3128
|
+
* src/strategies/Strategy.rb: Improve the dispatcher code and add
|
|
3129
|
+
a RunError exception.
|
|
3130
|
+
|
|
3131
|
+
2004-11-26 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3132
|
+
|
|
3133
|
+
Run it before your commits to check that you break nothing.
|
|
3134
|
+
|
|
3135
|
+
* test/ttk-check: New.
|
|
3136
|
+
|
|
3137
|
+
2004-11-26 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3138
|
+
|
|
3139
|
+
* src/ttk.rb: Change the autoload.
|
|
3140
|
+
* src/strategies/Block.rb: Update tests.
|
|
3141
|
+
* src/strategies/Strategy.rb: Move `hosted_by'.
|
|
3142
|
+
* src/result/Stream.rb: No more require 'result/ToResult'.
|
|
3143
|
+
|
|
3144
|
+
2004-11-26 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3145
|
+
|
|
3146
|
+
* misc/ttkci.rb: Rename to ...
|
|
3147
|
+
* vcs/ttk.rb: ... this, and update.
|
|
3148
|
+
|
|
3149
|
+
2004-11-26 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3150
|
+
|
|
3151
|
+
* src/Tools/YamlRUnitTestRunner.rb, src/Tools/SymTbl.rb: Remove.
|
|
3152
|
+
These tools are in ruby_ex now.
|
|
3153
|
+
|
|
3154
|
+
2004-11-25 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3155
|
+
|
|
3156
|
+
* src/ttk: Store the dispatcher in the symbol table.
|
|
3157
|
+
* src/daemon/daemon.rb: New. TTK Daemon main class.
|
|
3158
|
+
* src/daemon/tester.rb: Log login and logout.
|
|
3159
|
+
* src/ttk.rb: Add module Daemon.
|
|
3160
|
+
* src/ttkd: New. TTK Daemon driver.
|
|
3161
|
+
* src/tester.rb: Use the hooks to log login and logout.
|
|
3162
|
+
* src/ttkd.rb: New. Temporary implementation of ttk.rb for the Daemon.
|
|
3163
|
+
* src/strategies/Strategy.rb: Redo the dispatcher code.
|
|
3164
|
+
|
|
3165
|
+
2004-11-25 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3166
|
+
|
|
3167
|
+
* src/ttk: Modify -j options. Rename test to strategy in getopts. Add
|
|
3168
|
+
single letter options for Dumper, Loader, etc... Add -S options to add
|
|
3169
|
+
remote server to the farm. Fix --test-list and -h test. Creates the
|
|
3170
|
+
dispatcher.
|
|
3171
|
+
* src/daemon: New. Daemon module
|
|
3172
|
+
* src/daemon/tester.rb: New. Daemon front object.
|
|
3173
|
+
* src/tester.rb: New. Client to the Daemon.
|
|
3174
|
+
* src/dispatchers: New. Dispatchers hierarchy.
|
|
3175
|
+
* src/dispatchers/Random.rb: New. Dispatcher which randomly choose a
|
|
3176
|
+
server when several are available.
|
|
3177
|
+
* src/dispatchers/Dispatcher.rb: New. Base class of the Dispatchers
|
|
3178
|
+
hierarchy.
|
|
3179
|
+
* src/strategies/Strategy.rb: Fix bad previous integration. Fix hosts
|
|
3180
|
+
description message.
|
|
3181
|
+
|
|
3182
|
+
|
|
3183
|
+
2004-11-25 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3184
|
+
|
|
3185
|
+
* src/Tools/traverse.rb: Remove. Becomes fold and top_down in ruby_ex.
|
|
3186
|
+
* src/ttk: Add distributed mode support in the getopts.
|
|
3187
|
+
* src/ttk.rb: Add Dispatchers module.
|
|
3188
|
+
* src/strategies/Strategy.rb: Start distributed integration. Still some
|
|
3189
|
+
trouble with the run method of Strategy.
|
|
3190
|
+
* src/strategies/Cmd.rb: Use fold instead of traverse.
|
|
3191
|
+
* src/ruby_ex/session/profile.rb: Return a duplicata of the profile
|
|
3192
|
+
in to_hash.
|
|
3193
|
+
* src/ruby_ex/session/server.rb: Use :usrname instead of :name.
|
|
3194
|
+
|
|
3195
|
+
|
|
3196
|
+
2004-11-24 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3197
|
+
|
|
3198
|
+
* src/weights/base.rb: Rename to ...
|
|
3199
|
+
* src/weights/Weight.rb: ... this.
|
|
3200
|
+
* src/weights/wmin.rb: Rename to ...
|
|
3201
|
+
* src/weights/WMin.rb: ... this.
|
|
3202
|
+
* src/weights/wfloat.rb: Rename to ...
|
|
3203
|
+
* src/weights/WFloat.rb: ... this.
|
|
3204
|
+
|
|
3205
|
+
2004-11-24 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3206
|
+
|
|
3207
|
+
* src/ttk.rb: Update autoloader.
|
|
3208
|
+
|
|
3209
|
+
* src/strategies/TestTBase.rb: Rename to ...
|
|
3210
|
+
* src/strategies/Strategy.rb: ... this.
|
|
3211
|
+
* src/strategies/TestTSuite.rb: Rename to ...
|
|
3212
|
+
* src/strategies/Suite.rb: ... this.
|
|
3213
|
+
* src/strategies/TestTJUnit.rb: Rename to ...
|
|
3214
|
+
* src/strategies/JUnit.rb: ... this.
|
|
3215
|
+
* src/strategies/TestTBlock.rb: Rename to ...
|
|
3216
|
+
* src/strategies/Block.rb: ... this.
|
|
3217
|
+
* src/strategies/TestTRemoteCmd.rb: Rename to ...
|
|
3218
|
+
* src/strategies/RemoteCmd.rb: ... this.
|
|
3219
|
+
* src/strategies/TestTTest.rb: Rename to ...
|
|
3220
|
+
* src/strategies/Test.rb: ... this.
|
|
3221
|
+
* src/strategies/TestTCmd.rb: Rename to ...
|
|
3222
|
+
* src/strategies/Cmd.rb: ... this.
|
|
3223
|
+
* src/strategies/TestTStub.rb: Rename to ...
|
|
3224
|
+
* src/strategies/Stub.rb: ... this.
|
|
3225
|
+
* src/strategies/TestTAssert.rb: Rename to ...
|
|
3226
|
+
* src/strategies/Assert.rb: ... this.
|
|
3227
|
+
* src/strategies/TestTAuthors.rb: Rename to ...
|
|
3228
|
+
* src/strategies/Authors.rb: ... this.
|
|
3229
|
+
* src/strategies/TestTCmdBase.rb: Rename to ...
|
|
3230
|
+
* src/strategies/CmdBase.rb: ... this.
|
|
3231
|
+
* src/strategies/TestTGlob.rb: Rename to ...
|
|
3232
|
+
* src/strategies/Glob.rb: ... this.
|
|
3233
|
+
* src/strategies/TestTExtract.rb: Rename to ...
|
|
3234
|
+
* src/strategies/Extract.rb: ... this.
|
|
3235
|
+
* src/strategies/TestTRUnit.rb: Rename to ...
|
|
3236
|
+
* src/strategies/RUnit.rb: ... this.
|
|
3237
|
+
* src/strategies/TestTCompile.rb: Rename to ...
|
|
3238
|
+
* src/strategies/Compile.rb: ... this.
|
|
3239
|
+
* src/strategies/TestTCmdDiff.rb: Rename to ...
|
|
3240
|
+
* src/strategies/CmdDiff.rb: ... this.
|
|
3241
|
+
* src/strategies/TestTPass.rb: Rename to ...
|
|
3242
|
+
* src/strategies/Pass.rb: ... this.
|
|
3243
|
+
* src/strategies/TestTBall.rb: Rename to ...
|
|
3244
|
+
* src/strategies/Ball.rb: ... this.
|
|
3245
|
+
* src/strategies/TestTFail.rb: Rename to ...
|
|
3246
|
+
* src/strategies/Fail.rb: ... this.
|
|
3247
|
+
* src/strategies/TestTConfigure.rb: Rename to ...
|
|
3248
|
+
* src/strategies/Configure.rb: ... this.
|
|
3249
|
+
* src/strategies/TestTClean.rb: Rename to ...
|
|
3250
|
+
* src/strategies/Clean.rb: ... this.
|
|
3251
|
+
|
|
3252
|
+
2004-11-24 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3253
|
+
|
|
3254
|
+
* src/dumper: Rename to ....
|
|
3255
|
+
* src/dumpers: ... this.
|
|
3256
|
+
* src/filter: Rename to ....
|
|
3257
|
+
* src/filters: ... this.
|
|
3258
|
+
* src/weight: Rename to ....
|
|
3259
|
+
* src/weights: ... this.
|
|
3260
|
+
* src/loader: Rename to ....
|
|
3261
|
+
* src/loaders: ... this.
|
|
3262
|
+
* src/strategy: Rename to ....
|
|
3263
|
+
* src/strategies: ... this.
|
|
3264
|
+
|
|
3265
|
+
* src/result/ToResult.rb,
|
|
3266
|
+
* src/result/Stream.rb,
|
|
3267
|
+
* src/loaders/OYaml.rb: Update tests.
|
|
3268
|
+
|
|
3269
|
+
* src/loaders/Yaml.rb: Add backward compatibility.
|
|
3270
|
+
* src/ttk.rb: Update autoloader.
|
|
3271
|
+
|
|
3272
|
+
* src/ttk, src/weights/wmin.rb, src/strategies/TestTJUnit.rb,
|
|
3273
|
+
* src/weights/wfloat.rb, src/loaders/Loader.rb, src/weights/base.rb,
|
|
3274
|
+
* src/strategies/TestTSuite.rb, src/strategies/TestTBlock.rb,
|
|
3275
|
+
* src/strategies/TestTCmdDiff.rb, src/strategies/TestTCmdBase.rb,
|
|
3276
|
+
* src/strategies/TestTAssert.rb, src/strategies/TestTRUnit.rb,
|
|
3277
|
+
* src/strategies/TestTCmd.rb, src/strategies/TestTPass.rb,
|
|
3278
|
+
* src/strategies/TestTExtract.rb, src/strategies/TestTBall.rb,
|
|
3279
|
+
* src/strategies/TestTBase.rb, src/strategies/TestTFail.rb,
|
|
3280
|
+
* src/strategies/TestTStub.rb, src/strategies/TestTTest.rb,
|
|
3281
|
+
* src/strategies/TestTRemoteCmd.rb, src/strategies/TestTConfigure.rb,
|
|
3282
|
+
* src/strategies/TestTClean.rb, src/strategies/TestTGlob.rb,
|
|
3283
|
+
* src/strategies/TestTAuthors.rb, src/strategies/TestTCompile.rb,
|
|
3284
|
+
* src/Tools/YamlRUnitTestRunner.rb: Renaming: TestT* become *.
|
|
3285
|
+
|
|
3286
|
+
2004-11-23 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3287
|
+
|
|
3288
|
+
* src/ttk.rb: Update the autoload.
|
|
3289
|
+
* src/Test: Rename to ...
|
|
3290
|
+
* src/strategy: ... this.
|
|
3291
|
+
* src/filter/basic_logger.rb: Rename to ...
|
|
3292
|
+
* src/filter/BasicLogger.rb: ... this.
|
|
3293
|
+
* src/filter/saver.rb: Rename to ...
|
|
3294
|
+
* src/filter/Saver.rb: ... this.
|
|
3295
|
+
* src/filter/base.rb: Rename to ...
|
|
3296
|
+
* src/filter/Filter.rb: ... this.
|
|
3297
|
+
* src/filter/old/SummaryChecker.rb: Remove.
|
|
3298
|
+
* src/filter/old/SummarizePass.rb: Remove.
|
|
3299
|
+
* src/filter/old/SummarizeFail.rb: Remove.
|
|
3300
|
+
* src/filter/old/Summarize.rb: Remove.
|
|
3301
|
+
* src/loader/oyaml.rb: Rename to ...
|
|
3302
|
+
* src/loader/OYaml.rb: ... this.
|
|
3303
|
+
* src/loader/yaml.rb: Rename to ...
|
|
3304
|
+
* src/loader/Yaml.rb: ... this.
|
|
3305
|
+
* src/loader/Loader.rb: ... this.
|
|
3306
|
+
* src/loader/base.rb: Rename to ...
|
|
3307
|
+
* src/dumper/xml.rb: Rename to ...
|
|
3308
|
+
* src/dumper/Xml.rb: ... this.
|
|
3309
|
+
* src/dumper/yaml.rb: Rename to ...
|
|
3310
|
+
* src/dumper/Yaml.rb: ... this.
|
|
3311
|
+
* src/dumper/base.rb: Rename to ...
|
|
3312
|
+
* src/dumper/Dumper.rb: ... this.
|
|
3313
|
+
* src/result/to_result.rb: Rename to ...
|
|
3314
|
+
* src/result/ToResult.rb: ... this.
|
|
3315
|
+
* src/result/stream.rb: Rename to ...
|
|
3316
|
+
* src/result/Stream.rb: ... this.
|
|
3317
|
+
|
|
3318
|
+
2004-11-23 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3319
|
+
|
|
3320
|
+
New result system and a new loader OYaml.
|
|
3321
|
+
|
|
3322
|
+
* test/ttk/TTResultTest.rb,
|
|
3323
|
+
* test/ttk/testsuite.yml,
|
|
3324
|
+
* test/ttk-check,
|
|
3325
|
+
* src/Tools/CmdResult.rb,
|
|
3326
|
+
* src/result/TTResult.rb: Remove.
|
|
3327
|
+
* src/Tools/mktemp.rb: Move to ruby_ex repository.
|
|
3328
|
+
|
|
3329
|
+
* src/Test/TestTBall.rb,
|
|
3330
|
+
* src/Test/TestTExtract.rb,
|
|
3331
|
+
* src/Test/TestTConfigure.rb,
|
|
3332
|
+
* src/Test/TestTGlob.rb,
|
|
3333
|
+
* test/all/pool.yml,
|
|
3334
|
+
* test/all/pool_stud.yml,
|
|
3335
|
+
* test/all/wc.yml,
|
|
3336
|
+
* test/all/glob.yml: Add names.
|
|
3337
|
+
|
|
3338
|
+
* test/all/ball/qux_j-mini-lib/my_strlen.c: Change sleep duration.
|
|
3339
|
+
* test/all/ball/qux_j-mini-lib.tar.bz2: Regen.
|
|
3340
|
+
|
|
3341
|
+
* src/ttk,
|
|
3342
|
+
* src/config.rb,
|
|
3343
|
+
* src/ttk.rb,
|
|
3344
|
+
* src/Test/TestTTest.rb,
|
|
3345
|
+
* src/Test/TestTBase.rb,
|
|
3346
|
+
* src/Test/TestTBlock.rb,
|
|
3347
|
+
* src/dumper/yaml.rb,
|
|
3348
|
+
* src/dumper/xml.rb,
|
|
3349
|
+
* src/result/stream.rb,
|
|
3350
|
+
* src/loader/oyaml.rb,
|
|
3351
|
+
* src/loader/base.rb,
|
|
3352
|
+
* src/loader/yaml.rb,
|
|
3353
|
+
* src/Test/TestTSuite.rb: Update to new result.
|
|
3354
|
+
|
|
3355
|
+
* src/filter/base.rb,
|
|
3356
|
+
* src/Test/TestTCmd.rb,
|
|
3357
|
+
* src/Test/TestTCmdBase.rb: Clean up.
|
|
3358
|
+
|
|
3359
|
+
* src/Tools/YamlRUnitTestRunner.rb: Register the runner.
|
|
3360
|
+
* src/filter/basic_logger.rb: Allow to use a different logger.
|
|
3361
|
+
* src/weight/base.rb: Handle empty suites.
|
|
3362
|
+
* src/weight/wfloat.rb: Handle nan.
|
|
3363
|
+
* misc/ttkci.rb: Update.
|
|
3364
|
+
|
|
3365
|
+
|
|
3366
|
+
2004-11-23 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3367
|
+
|
|
3368
|
+
* src/filter/saver.rb: Add documentation, add the
|
|
3369
|
+
repeat method.
|
|
3370
|
+
|
|
3371
|
+
2004-11-23 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3372
|
+
|
|
3373
|
+
* src/filter/saver.rb: New.
|
|
3374
|
+
|
|
3375
|
+
2004-11-23 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3376
|
+
|
|
3377
|
+
* src/loader/oyaml.rb: New, ordered yaml loader class.
|
|
3378
|
+
|
|
3379
|
+
2004-11-23 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3380
|
+
|
|
3381
|
+
* src/result/stream.rb: New.
|
|
3382
|
+
* src/result/to_result.rb: New.
|
|
3383
|
+
|
|
3384
|
+
2004-11-19 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3385
|
+
|
|
3386
|
+
* src/Filter/Summarize.rb, src/Filter/SummaryChecker.rb
|
|
3387
|
+
* src/Filter/SummarizeFail.rb, src/Filter/SummarizePass.rb: Move ...
|
|
3388
|
+
* src/filter/old: ... here.
|
|
3389
|
+
|
|
3390
|
+
2004-11-18 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3391
|
+
|
|
3392
|
+
* misc/gendoc.rb: Update to new directories names.
|
|
3393
|
+
|
|
3394
|
+
2004-11-18 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3395
|
+
|
|
3396
|
+
* test/ttk/TTResultTest.rb: Update to the new TTResult.
|
|
3397
|
+
* src/Test/TestTRUnit.rb: Use the good loader, and no read in the
|
|
3398
|
+
result.
|
|
3399
|
+
* src/result/TTResult.rb: Ensure the symbol conversion.
|
|
3400
|
+
* src/ttk: Add a Thread.critical section.
|
|
3401
|
+
|
|
3402
|
+
2004-11-17 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3403
|
+
|
|
3404
|
+
* src/ttk.rb: New, autoload.
|
|
3405
|
+
* src/config.rb: New.
|
|
3406
|
+
* src/Test/TestTSuite.rb, src/Test/TestTBlock.rb, src/Test/TestTBase.rb:
|
|
3407
|
+
* src/Filter/Summarize.rb, src/Filter/SummarizeFail.rb,
|
|
3408
|
+
* src/Filter/SummarizePass.rb: Update requires, use autoload.
|
|
3409
|
+
* src/ttk: Use reopen to update the logger.
|
|
3410
|
+
|
|
3411
|
+
* src/Filter/Base.rb: Rename to ...
|
|
3412
|
+
* src/filter/base.rb: ... this.
|
|
3413
|
+
* src/Filter/Basic.rb: Rename to ...
|
|
3414
|
+
* src/filter/basic_logger.rb: ... this.
|
|
3415
|
+
|
|
3416
|
+
* src/Weight/Base.rb: Rename to ...
|
|
3417
|
+
* src/weight/base.rb: ... this.
|
|
3418
|
+
* src/Weight/WFloat.rb: Rename to ...
|
|
3419
|
+
* src/weight/wfloat.rb: ... this.
|
|
3420
|
+
* src/Weight/WMin.rb: Rename to ...
|
|
3421
|
+
* src/weight/wmin.rb: ... this.
|
|
3422
|
+
|
|
3423
|
+
* src/dumper/base.rb: New.
|
|
3424
|
+
* src/Dumper/Yaml.rb: Rename to ...
|
|
3425
|
+
* src/dumper/yaml.rb: ... this.
|
|
3426
|
+
* src/Dumper/Xml.rb: Rename to ...
|
|
3427
|
+
* src/dumper/xml.rb: ... this.
|
|
3428
|
+
|
|
3429
|
+
* src/Loader/Base.rb: Rename to ...
|
|
3430
|
+
* src/loader/base.rb: ... this.
|
|
3431
|
+
* src/Loader/Yaml.rb: Rename to ...
|
|
3432
|
+
* src/loader/yaml.rb: ... this.
|
|
3433
|
+
* src/TTResult.rb: Rename to ...
|
|
3434
|
+
* src/result/TTResult.rb: ... this.
|
|
3435
|
+
|
|
3436
|
+
* src/Test/TestTCmd.rb: require 'traverse'.
|
|
3437
|
+
|
|
3438
|
+
2004-11-17 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3439
|
+
|
|
3440
|
+
* src/ttk: Add a logger, an option to change the log file,
|
|
3441
|
+
and find a very strange bug (see FIXME).
|
|
3442
|
+
* src/Filter/Basic.rb: Use the logger.
|
|
3443
|
+
* src/Test/TestTSuite.rb, src/Test/TestTBlock.rb, src/Test/TestTBase.rb,
|
|
3444
|
+
* src/Dumper/Xml.rb: Use STD*, instead of $std*.
|
|
3445
|
+
|
|
3446
|
+
2004-11-16 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3447
|
+
|
|
3448
|
+
* src/TTResult.rb: Big improvements, help filters to work better.
|
|
3449
|
+
* src/Loader/Base.rb, src/Loader/Yaml.rb: Load class names.
|
|
3450
|
+
* src/Filter/Base.rb, src/Filter/Summarize.rb,
|
|
3451
|
+
* src/Dumper/Xml.rb, src/Filter/SummaryChecker.rb,
|
|
3452
|
+
* src/Dumper/Yaml.rb: Update to new message names.
|
|
3453
|
+
* src/Test/TestTAssert.rb: 80 columns.
|
|
3454
|
+
* test/test: Better use of Pathname.
|
|
3455
|
+
* misc/ttkci.rb: Fix `mail' call.
|
|
3456
|
+
* src/Test/TestTSuite.rb:
|
|
3457
|
+
No more use `<<' for result use only `new_elm_seq'.
|
|
3458
|
+
|
|
3459
|
+
2004-11-03 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3460
|
+
|
|
3461
|
+
* test/ttk/Test/TestTBall.yml: New. TestTBall test suite.
|
|
3462
|
+
|
|
3463
|
+
2004-11-03 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3464
|
+
|
|
3465
|
+
* test/test: Puts header in the sub process.
|
|
3466
|
+
* src/Tools/ArrayDiff.rb: Fix bug.
|
|
3467
|
+
|
|
3468
|
+
2004-11-03 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3469
|
+
|
|
3470
|
+
* test/test: Fix bug in pathnames computation.
|
|
3471
|
+
* test/ttk/Test/TestTTest.yml: Add force_debug attribute to avoid
|
|
3472
|
+
the test failed when using a debug level > 0.
|
|
3473
|
+
* test/ttk/Tools/AssertEvalTest.rb: Remove useless require.
|
|
3474
|
+
* test/ttk/TTResultTest.rb: New. TTResult test suite.
|
|
3475
|
+
* test/ttk/testsuite.yml: New. Test suite for module TTK.
|
|
3476
|
+
* src/Test/TestTRUnit.rb: Don't need to use the Yaml loader anymore.
|
|
3477
|
+
* src/Tools/HashDiff.rb: Fix bug.
|
|
3478
|
+
* src/TTResult.rb: Hash value key are now converted to symbol
|
|
3479
|
+
recursively.
|
|
3480
|
+
|
|
3481
|
+
2004-11-03 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3482
|
+
|
|
3483
|
+
* test/ttk/Test/TestTRUnit.yml: Fix returned line number in exception
|
|
3484
|
+
backtrace.
|
|
3485
|
+
|
|
3486
|
+
2004-11-03 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3487
|
+
|
|
3488
|
+
* test/test: New. ttk tester.
|
|
3489
|
+
* test/ttk/Test/TestTFail.yml, test/ttk/Test/TestTStub.yml,
|
|
3490
|
+
* test/ttk/Test/TestTTest.yml, test/ttk/Test/TestTAssert.yml,
|
|
3491
|
+
* test/ttk/Test/TestTCmd.yml, test/ttk/Test/TestTPass.yml,
|
|
3492
|
+
* test/ttk/Test/TestTSuite.yml: Readded in this directory.
|
|
3493
|
+
* test/ttk/Test/TestTRUnit.yml: New. TestTRUnit test suite.
|
|
3494
|
+
* test/ttk/Test/TestTRUnit/simple.rb: Auxiliary file used by
|
|
3495
|
+
TestTRUnit.yml
|
|
3496
|
+
* test/ttk/Tools/testsuite.yml: New. Grouped RUnit test suites in a
|
|
3497
|
+
single test suite.
|
|
3498
|
+
* test/ttk/Tools/SafeEvalTest.rb, test/ttk/Tools/ArrayDiffTest.rb,
|
|
3499
|
+
* test/ttk/Tools/AssertEvalTest.rb, test/ttk/Tools/HashDiffTest.rb: Use
|
|
3500
|
+
YamlRUnitTestRunner as test runner now.
|
|
3501
|
+
* src/Test/TestTRUnit.rb: New. RUnit wrapper.
|
|
3502
|
+
* src/Tools/YamlRUnitTestRunner.rb: New. Specific RUnit runner which
|
|
3503
|
+
produce yaml output.
|
|
3504
|
+
|
|
3505
|
+
2004-11-02 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3506
|
+
|
|
3507
|
+
* test/unit/Tools/SafeEvalTest.rb, test/unit/Tools/ArrayDiffTest.rb,
|
|
3508
|
+
* test/unit/Tools/AssertEvalTest.rb, test/unit/Tools/HashDiffTest.rb,
|
|
3509
|
+
* test/integration/TestTFail.yml, test/integration/TestTStub.yml,
|
|
3510
|
+
* test/integration/TestTTest.yml, test/integration/TestTAssert.yml,
|
|
3511
|
+
* test/integration/TestTCmd.yml, test/integration/TestTPass.yml,
|
|
3512
|
+
* test/integration/TestTSuite.yml: Deleted, because a new test suite
|
|
3513
|
+
is coming soon
|
|
3514
|
+
* src/Test/TestTTest.rb: Add a fixme.
|
|
3515
|
+
|
|
3516
|
+
2004-11-02 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3517
|
+
|
|
3518
|
+
* test/integration/TestTStub.yml, test/integration/TestTTest.yml:
|
|
3519
|
+
Replace 'result:' by 'returned_value:'
|
|
3520
|
+
* test/integration/TestTSuite.yml: Replace 'result:' by
|
|
3521
|
+
'returned_value:'. Add a new test.
|
|
3522
|
+
* src/Test/TestTStub.rb: Renamed ':result' by ':returned_value'
|
|
3523
|
+
|
|
3524
|
+
2004-11-02 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3525
|
+
|
|
3526
|
+
* test/integration/TestTAssert.yml: New. TestTAssert test suite.
|
|
3527
|
+
|
|
3528
|
+
2004-11-02 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3529
|
+
|
|
3530
|
+
* src/Test/TestTStub.rb: Coding style.
|
|
3531
|
+
* src/Loader/Yaml.rb: Fix bug. Integer key return nil when converted
|
|
3532
|
+
into a symbol.
|
|
3533
|
+
* src/TTResult.rb: Fix bug. Ensure []= add a symbol key in TTResult.
|
|
3534
|
+
|
|
3535
|
+
2004-11-02 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3536
|
+
|
|
3537
|
+
* src/Test/TestTAssert.rb: Add a FIXME to don't forget to change this
|
|
3538
|
+
issue as soon as possible.
|
|
3539
|
+
|
|
3540
|
+
2004-11-02 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3541
|
+
|
|
3542
|
+
* src/Tools/SafeEval.rb: Remove useless attribute.
|
|
3543
|
+
|
|
3544
|
+
2004-11-01 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3545
|
+
|
|
3546
|
+
* src/Test/TestTStub.rb: Typo plus milogue is now protected.
|
|
3547
|
+
* src/Test/TestTTest.rb: Don't use Filter::BlackHole any more.
|
|
3548
|
+
* src/Filter/BlackHole.rb: Deleted.
|
|
3549
|
+
|
|
3550
|
+
2004-10-30 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3551
|
+
|
|
3552
|
+
* test/integration/TestTFail.yml, test/integration/TestTPass.yml:
|
|
3553
|
+
Include test in a test suite.
|
|
3554
|
+
* test/integration/TestTSuite.yml: Add test to test attribute
|
|
3555
|
+
transmission.
|
|
3556
|
+
|
|
3557
|
+
2004-10-29 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3558
|
+
|
|
3559
|
+
* src/ttk: Add an option to be able to add attributes to the test suite
|
|
3560
|
+
from the command line.
|
|
3561
|
+
|
|
3562
|
+
2004-10-28 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3563
|
+
|
|
3564
|
+
* src/Test/TestTAssert.rb: Remove the older "parser". Now use
|
|
3565
|
+
AssertEval.
|
|
3566
|
+
|
|
3567
|
+
2004-10-28 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3568
|
+
|
|
3569
|
+
* src/Tools/ArrayDiff.rb: Include the module Diff.
|
|
3570
|
+
* src/Tools/Diff.rb: New. Contains the diff method common at ArrayDiff
|
|
3571
|
+
and HashDiff.
|
|
3572
|
+
* src/Tools/HashDiff.rb: Include the module Diff.
|
|
3573
|
+
|
|
3574
|
+
2004-10-28 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3575
|
+
|
|
3576
|
+
* test/integration/TestTTest.yml: Add a test to test ignored_value
|
|
3577
|
+
mechanism.
|
|
3578
|
+
* test/integration/TestTPass.yml: Remove the toto attribute.
|
|
3579
|
+
|
|
3580
|
+
2004-10-28 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3581
|
+
|
|
3582
|
+
* src/Test/TestTBase.rb: Take the symbol table in argument.
|
|
3583
|
+
* src/Test/TestTTest.rb: Unless instead of 'if not'.
|
|
3584
|
+
* src/Filter/BlackHole.rb: Coding style.
|
|
3585
|
+
|
|
3586
|
+
2004-10-28 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3587
|
+
|
|
3588
|
+
* test/unit/Tools/ArrayDiffTest.rb: Add tests to show off the bugs.
|
|
3589
|
+
* src/Tools/ArrayDiff.rb: Fix bug/typo from revision 135 reported by
|
|
3590
|
+
Ertai.
|
|
3591
|
+
|
|
3592
|
+
2004-10-28 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3593
|
+
|
|
3594
|
+
* src/Tools/HashDiff.rb: Use 'foo[k] = v' instead of
|
|
3595
|
+
'foo.update(k => v)'.
|
|
3596
|
+
|
|
3597
|
+
2004-10-28 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3598
|
+
|
|
3599
|
+
* test/unit/Tools/HashDiffTest.rb: Add test to show off the bugs.
|
|
3600
|
+
* src/Tools/HashDiff.rb: Fix bug/typo from revision 134 reported by
|
|
3601
|
+
Ertai.
|
|
3602
|
+
|
|
3603
|
+
2004-10-27 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3604
|
+
|
|
3605
|
+
* test/integration/TestTTest.yml: New. TestTTest test suite.
|
|
3606
|
+
* test/integration/TestTCmd.yml: New. TestTCmd test suite.
|
|
3607
|
+
|
|
3608
|
+
2004-10-27 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3609
|
+
|
|
3610
|
+
* test/integration/TestTFail.yml: New. TestTFail test suite.
|
|
3611
|
+
* test/integration/TestTPass.yml: New. TestTPass test suite.
|
|
3612
|
+
* test/integration/TestTSuite.yml: New. TestTSuite test suite.
|
|
3613
|
+
|
|
3614
|
+
2004-10-27 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3615
|
+
|
|
3616
|
+
* src/Test/TestTTest.rb: Fix little bug.
|
|
3617
|
+
|
|
3618
|
+
2004-10-27 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3619
|
+
|
|
3620
|
+
* test/integration/TestTStub.yml: New. TestTStub test suite. Based on
|
|
3621
|
+
TestTTest.
|
|
3622
|
+
* src/Test/TestTStub.rb: New. Return its result attribute as result.
|
|
3623
|
+
Used to test TestTTest.
|
|
3624
|
+
|
|
3625
|
+
2004-10-27 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3626
|
+
|
|
3627
|
+
* src/Test/TestTBase.rb: Add method create_test.
|
|
3628
|
+
* src/Test/TestTTest.rb: New. A test strategy to test them all.
|
|
3629
|
+
* src/Filter/BlackHole.rb: A filter which behaves as /dev/null.
|
|
3630
|
+
|
|
3631
|
+
2004-10-27 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3632
|
+
|
|
3633
|
+
* test/unit/Tools/ArrayDiffTest.rb: New. ArrayDiff RUnit test class.
|
|
3634
|
+
* src/Tools/ArrayDiff.rb: New. Extend the class Array with the method
|
|
3635
|
+
diff and gen_diff. These methods are similar to their homonym in the
|
|
3636
|
+
class Hash.
|
|
3637
|
+
|
|
3638
|
+
2004-10-27 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3639
|
+
|
|
3640
|
+
* test/unit/Tools/HashDiffTest.rb: New. HashDiff RUnit test class.
|
|
3641
|
+
* src/Tools/HashDiff.rb: New. Extend the class Hash with the method
|
|
3642
|
+
diff, gen_diff and no_diff?. diff is a shortcut to gen_diff and
|
|
3643
|
+
no_diff? is a shortcut to test whether there are differents. gen_diff
|
|
3644
|
+
returns a hash which describe the differences.
|
|
3645
|
+
|
|
3646
|
+
2004-10-27 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3647
|
+
|
|
3648
|
+
* src/Test/TestTBase.rb: Initialize @summary before the prologue.
|
|
3649
|
+
* misc/ttkci.rb: Typo.
|
|
3650
|
+
|
|
3651
|
+
2004-10-25 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3652
|
+
|
|
3653
|
+
* test/unit/Tools/SafeEvalTest.rb: Test the new feature.
|
|
3654
|
+
* src/Tools/SafeEval.rb: Also return nil directly if almost empty code
|
|
3655
|
+
is given.
|
|
3656
|
+
|
|
3657
|
+
2004-10-25 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3658
|
+
|
|
3659
|
+
* test/unit/Tools/AssertEvalTest.rb: Test the new feature.
|
|
3660
|
+
* src/Tools/AssertEval.rb: Return nil directly if blank or empty string
|
|
3661
|
+
is given.
|
|
3662
|
+
|
|
3663
|
+
2004-10-25 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3664
|
+
|
|
3665
|
+
* test/unit/Tools/SafeEvalTest.rb: Add test: argument and block binding
|
|
3666
|
+
at the same time.
|
|
3667
|
+
|
|
3668
|
+
2004-10-25 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3669
|
+
|
|
3670
|
+
* src/Tools/SafeEval.rb: Safe and collect are now public attributes.
|
|
3671
|
+
|
|
3672
|
+
2004-10-25 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3673
|
+
|
|
3674
|
+
* test/unit/Tools/AssertEvalTest.rb: New. AssertEval RUnit test class.
|
|
3675
|
+
* src/Tools/AssertEval.rb: New. Based on SafeEval. Provides a "secure"
|
|
3676
|
+
environment in order to evaluate ttk assertions.
|
|
3677
|
+
|
|
3678
|
+
2004-10-25 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3679
|
+
|
|
3680
|
+
* test/unit/Tools/SafeEvalTest.rb: New. SafeEval RUnit test class.
|
|
3681
|
+
* src/Tools/SafeEval.rb: New. Provides a customizable safe environment
|
|
3682
|
+
to evaluate ruby code.
|
|
3683
|
+
|
|
3684
|
+
2004-10-24 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3685
|
+
|
|
3686
|
+
* src/Test/TestTBase.rb, src/Test/TestTSuite.rb:
|
|
3687
|
+
Fix the weight computation.
|
|
3688
|
+
* test/all/suite_timeout.yml: Put `timeout' in an `attributes' hash.
|
|
3689
|
+
* test/all/fatal.yml: Augment some weights.
|
|
3690
|
+
|
|
3691
|
+
2004-10-24 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3692
|
+
|
|
3693
|
+
* test/all.yml: Remove print_mode.yml.
|
|
3694
|
+
* test/all/ref/err/print_mode.yml: Remove.
|
|
3695
|
+
* test/all/ref/out/print_mode.yml: Remove.
|
|
3696
|
+
* test/all/print_mode.yml: Remove.
|
|
3697
|
+
|
|
3698
|
+
2004-10-24 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3699
|
+
|
|
3700
|
+
* test/all/ref/err/print_mode.yml: Remove.
|
|
3701
|
+
* test/all/ref/out/print_mode.yml: Remove.
|
|
3702
|
+
* test/all/print_mode.yml: Remove.
|
|
3703
|
+
|
|
3704
|
+
2004-10-24 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3705
|
+
|
|
3706
|
+
* src/Test/TestTRemoteCmd.rb: Use symbols instead of strings.
|
|
3707
|
+
* src/Tools/HostDispatcher.rb: Fix `hosts=', and improve `<<'.
|
|
3708
|
+
|
|
3709
|
+
2004-10-24 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3710
|
+
|
|
3711
|
+
* misc/ttkci.rb: New, to use it see misc/vcs/README, and
|
|
3712
|
+
after making aliases just type svn ttkci 'And here put your subject'.
|
|
3713
|
+
* misc: Changed the svn:externals property.
|
|
3714
|
+
|
|
3715
|
+
2004-10-20 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3716
|
+
|
|
3717
|
+
* src/Filter/SummaryChecker.rb: New.
|
|
3718
|
+
* src/Filter/Weight.rb: Remove.
|
|
3719
|
+
* src/Test/TestTBase.rb: Call finish in abort.
|
|
3720
|
+
* src/Test/TestTSuite.rb: Fix set_one_attribute and pool mode.
|
|
3721
|
+
* src/Test/TestTExtract.rb, src/Test/TestTConfigure.rb,
|
|
3722
|
+
* src/Test/TestTGlob.rb, src/Test/TestTBall.rb: Fix summary.
|
|
3723
|
+
* src/Weight/Base.rb: Fix error message.
|
|
3724
|
+
* src/Loader/Base.rb: Fix bug with __getobj__.
|
|
3725
|
+
* src/ttk: Update the option parser.
|
|
3726
|
+
* src/Test/TestTCmd.rb:
|
|
3727
|
+
Add option `quiet print', fix sub mode, and update coding style.
|
|
3728
|
+
|
|
3729
|
+
2004-10-19 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3730
|
+
|
|
3731
|
+
* src/ttk: Add --test-list, --wclass-list, and --wclass.
|
|
3732
|
+
* src/Test/TestTBase.rb, src/Test/TestTSuite.rb, src/Loader/Base.rb:
|
|
3733
|
+
Add weight support.
|
|
3734
|
+
* src/Weight/Base.rb, src/Weight/WMin.rb, src/Weight/WFloat.rb,
|
|
3735
|
+
* src/Weight, test/all/weight.yml: New.
|
|
3736
|
+
|
|
3737
|
+
2004-10-15 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3738
|
+
|
|
3739
|
+
* src/Test/TestTSuite.rb: Get all the code from TestTSuiteBase.
|
|
3740
|
+
* src/Test/TestTAssert.rb: Inherit from TestTSuite instead of
|
|
3741
|
+
TestTSuiteBase.
|
|
3742
|
+
* src/Test/TestTSuiteBase.rb: Deleted.
|
|
3743
|
+
* src/Filter/Base.rb: Typo. ':GET' instead of 'GET'
|
|
3744
|
+
|
|
3745
|
+
2004-10-12 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3746
|
+
|
|
3747
|
+
* src/Test/TestTBase.rb: Add a finish call when the test pass.
|
|
3748
|
+
* src/Test/TestTAssert.rb: Swap two lines.
|
|
3749
|
+
|
|
3750
|
+
2004-10-12 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3751
|
+
|
|
3752
|
+
* src/Test/TestTBase.rb: Add finish.
|
|
3753
|
+
* src/Test/TestTSuite.rb: Remove useless methods.
|
|
3754
|
+
* misc: Changed property.
|
|
3755
|
+
* test/all.yml: Use TestTCmdDiff.
|
|
3756
|
+
* src/Test/TestTAssert.rb: Update.
|
|
3757
|
+
* src/Test/TestTSuiteBase.rb: Use finish.
|
|
3758
|
+
* misc/vcs: New external tool, see README.
|
|
3759
|
+
|
|
3760
|
+
2004-10-12 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3761
|
+
|
|
3762
|
+
* src/Test/TestTAssert.rb: Use an heredoc instead incrementation for
|
|
3763
|
+
the documentation.
|
|
3764
|
+
|
|
3765
|
+
2004-10-12 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3766
|
+
|
|
3767
|
+
* src/Test/TestTSuiteBase.rb: Inline the method transmit_attributes.
|
|
3768
|
+
|
|
3769
|
+
2004-10-12 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3770
|
+
|
|
3771
|
+
* test/all/TestTAssert/first.yml: Now a test failed fatally.
|
|
3772
|
+
* src/Test/TestTJUnit.rb: Change the debug level from 2 to 1.
|
|
3773
|
+
* src/Test/TestTAssert.rb: Check if a test in the suite failed fatally.
|
|
3774
|
+
Display the status "PASS" if everything is alright.
|
|
3775
|
+
* src/Test/TestTBase.rb: Add a fixme.
|
|
3776
|
+
|
|
3777
|
+
2004-10-12 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3778
|
+
|
|
3779
|
+
* test/all/TestTAssert/first.yml: Adapted to fit new TestTAssert syntax
|
|
3780
|
+
* src/Test/TestTSuite.rb: Now inherited from TestTSuiteBase.
|
|
3781
|
+
* src/Test/TestTAssert.rb: Now inherited from TestTSuiteBase. So class
|
|
3782
|
+
attributes is printed only once for TTK::Test::TestTAssert.
|
|
3783
|
+
* src/Test/TestTSuiteBase.rb: New. Contain every features of former
|
|
3784
|
+
TestTSuite. Make some refactoring to allow inheritance.
|
|
3785
|
+
|
|
3786
|
+
2004-10-11 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3787
|
+
|
|
3788
|
+
* src/Test/TestTJUnit.rb: Location are now displayed as a sequence.
|
|
3789
|
+
Debug messages are now displayed as attributes instead of a message on
|
|
3790
|
+
stdout.
|
|
3791
|
+
* src/Test/TestTAssert.rb: Raise an AssertErr instead of print the
|
|
3792
|
+
'assert failed' attribute.
|
|
3793
|
+
|
|
3794
|
+
2004-10-10 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3795
|
+
|
|
3796
|
+
* test/all/xunit/junit/multibar.yml: New. Test file for the
|
|
3797
|
+
MultiRight/bar/BarTest.java class.
|
|
3798
|
+
* test/all/xunit/junit/simple_exception.yml: New. Test file for the
|
|
3799
|
+
SimpleException/SimpleExceptionTest.java class.
|
|
3800
|
+
* test/all/xunit/junit/MultiRight/Foo/FooTest.java: New. JUnit test
|
|
3801
|
+
class for Foo.java class.
|
|
3802
|
+
* test/all/xunit/junit/MultiRight/Foo/Foo.java: New. Foo.java class.
|
|
3803
|
+
* test/all/xunit/junit/MultiRight/bar/BarTest.java: New. JUnit test
|
|
3804
|
+
class for Bar.java class.
|
|
3805
|
+
* test/all/xunit/junit/MultiRight/bar/Bar.java: New. Bar.java class.
|
|
3806
|
+
* test/all/xunit/junit/MultiRight/MultiRight.java: New. MultiRight.java
|
|
3807
|
+
class.
|
|
3808
|
+
* test/all/xunit/junit/MultiRight/MultiRightTest.java: New. JUnit test
|
|
3809
|
+
class for MultiRight.java class.
|
|
3810
|
+
* test/all/xunit/junit/MultiRight/build.sh: New. Script to automaticaly
|
|
3811
|
+
build the stub java project MultiRight.
|
|
3812
|
+
* test/all/xunit/junit/multiright.yml: New. Test file for the
|
|
3813
|
+
MultiRightTest.java class.
|
|
3814
|
+
* test/all/xunit/junit/build.sh: New. Script to automaticaly build all
|
|
3815
|
+
the stubs java projects in junit directory.
|
|
3816
|
+
* test/all/xunit/junit/SimpleException/SimpleExceptionTest.java: New.
|
|
3817
|
+
JUnit test class for SimpleException.java class.
|
|
3818
|
+
* test/all/xunit/junit/SimpleException/build.sh: New. Script to
|
|
3819
|
+
automaticaly build the stub java project SimpleException.
|
|
3820
|
+
* test/all/xunit/junit/multifoo.yml: New. Test file for the
|
|
3821
|
+
FooTest.java class.
|
|
3822
|
+
* src/Test/TestTJUnit.rb: New. Wrapper for JUnit.
|
|
3823
|
+
* src/Test/TestTAssert.rb: Add/change method restriction access to
|
|
3824
|
+
protected.
|
|
3825
|
+
|
|
3826
|
+
2004-10-09 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3827
|
+
|
|
3828
|
+
* src/Test/TestTAssert.rb: Remove the useless class
|
|
3829
|
+
TTK::Test::TestTAssert.Script.
|
|
3830
|
+
* NORM: Add message to warn it's not up to date.
|
|
3831
|
+
|
|
3832
|
+
2004-10-09 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3833
|
+
|
|
3834
|
+
* test/all/TestTAssert/first.yml: New. first.yml is the first, lone
|
|
3835
|
+
and fairly bad test file for TestTAssert.
|
|
3836
|
+
* test/all/TestTAssert/segfault.yml: New. TTK segfault with this file.
|
|
3837
|
+
* src/Test/TestTAssert.rb: New. TestTAssert allows to write pre/post
|
|
3838
|
+
assertions to check before/after the execution of a test suite.
|
|
3839
|
+
Several assertions are already available. More will come later.
|
|
3840
|
+
See ./ttk -d 1 -h TestTAssert for further informations.
|
|
3841
|
+
|
|
3842
|
+
2004-10-01 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3843
|
+
|
|
3844
|
+
* TODO: Add an item to don't forget to fix the test which failed in
|
|
3845
|
+
the test suite.
|
|
3846
|
+
|
|
3847
|
+
2004-10-01 Nicolas Despres <polrop@lrde.epita.fr>
|
|
3848
|
+
|
|
3849
|
+
* test/all/ref/out/stud.yml, test/all/ref/out/glob_stud.yml:
|
|
3850
|
+
* test/all/ref/out/glob.yml, test/all/ref/out/no_suite.yml:
|
|
3851
|
+
* test/all/ref/out/timeout.yml, test/all/ref/out/fatal.yml:
|
|
3852
|
+
* test/all/ref/out/sub.yml, test/all/ref/out/pipeline-timeout.yml:
|
|
3853
|
+
* test/all/ref/out/block.yml, test/all/ref/out/suite_timeout.yml:
|
|
3854
|
+
* test/all/ref/out/mini-lib.yml, test/all/ref/out/print_mode.yml:
|
|
3855
|
+
* test/all/ref/out/remote_dispatcher.yml, test/all/ref/out/author.yml:
|
|
3856
|
+
* test/all/ref/out/pool_stud.yml, test/all/ref/out/pool.yml:
|
|
3857
|
+
* test/all/ref/out/exit.yml, test/all/ref/out/wc.yml:
|
|
3858
|
+
* test/all/ref/out/ball.yml, test/all/ref/out/env_cmd.yml:
|
|
3859
|
+
* test/all/ref/out/remote_cmd.yml, test/all/ref/err/stud.yml:
|
|
3860
|
+
* test/all/ref/err/glob_stud.yml, test/all/ref/err/glob.yml:
|
|
3861
|
+
* test/all/ref/err/no_suite.yml, test/all/ref/err/timeout.yml:
|
|
3862
|
+
* test/all/ref/err/fatal.yml, test/all/ref/err/sub.yml:
|
|
3863
|
+
* test/all/ref/err/pipeline-timeout.yml, test/all/ref/err/block.yml:
|
|
3864
|
+
* test/all/ref/err/suite_timeout.yml, test/all/ref/err/mini-lib.yml:
|
|
3865
|
+
* test/all/ref/err/print_mode.yml
|
|
3866
|
+
* test/all/ref/err/remote_dispatcher.yml, test/all/ref/err/author.yml:
|
|
3867
|
+
* test/all/ref/err/pool_stud.yml, test/all/ref/err/pool.yml:
|
|
3868
|
+
* test/all/ref/err/exit.yml, test/all/ref/err/wc.yml:
|
|
3869
|
+
* test/all/ref/err/ball.yml, test/all/ref/err/env_cmd.yml:
|
|
3870
|
+
* test/all/ref/err/remote_cmd.yml: New. Output and error reference
|
|
3871
|
+
generated by the revision 106 of TTK.
|
|
3872
|
+
* test/all.yml: New. Yaml input file to test TTK.
|
|
3873
|
+
|
|
3874
|
+
2004-10-01 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3875
|
+
|
|
3876
|
+
* src/Test/TestTCmd.rb: Fix bug with @command.
|
|
3877
|
+
|
|
3878
|
+
2004-10-01 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3879
|
+
|
|
3880
|
+
* test/all/stud.yml, test/all/pool_stud.yml: Typo.
|
|
3881
|
+
* src/Test/TestTCmd.rb: Fix a test with stream[:ref].
|
|
3882
|
+
* src/Tools/HostDispatcher.rb: Enforce hosts=.
|
|
3883
|
+
* src/Filter/Weight.rb: Add a default case for some hash tables.
|
|
3884
|
+
|
|
3885
|
+
2004-09-30 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3886
|
+
|
|
3887
|
+
* src/Test/TestTSuite.rb, src/Test/TestTCmdBase.rb,
|
|
3888
|
+
* src/Test/TestTBase.rb: The abort method become public.
|
|
3889
|
+
|
|
3890
|
+
2004-09-30 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3891
|
+
|
|
3892
|
+
A little yaml helper.
|
|
3893
|
+
|
|
3894
|
+
* misc/expandtab.rb: New script to expand tabs in files.
|
|
3895
|
+
|
|
3896
|
+
2004-09-30 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3897
|
+
|
|
3898
|
+
* test/all/stud.yml, test/all/glob.yml, test/all/no_suite.yml,
|
|
3899
|
+
* test/all/timeout.yml, test/all/fatal.yml,
|
|
3900
|
+
* test/all/pipeline-timeout.yml, test/all/block.yml,
|
|
3901
|
+
* test/all/suite_timeout.yml, test/all/print_mode.yml,
|
|
3902
|
+
* test/all/author.yml, test/all/pool_stud.yml, test/all/wc.yml,
|
|
3903
|
+
* test/all/pool.yml, test/all/remote_cmd.yml: Update weights.
|
|
3904
|
+
|
|
3905
|
+
2004-09-30 Marco Tessari <marco.tessari@epita.fr>
|
|
3906
|
+
|
|
3907
|
+
* src/Test/TestTExtract.rb: Search the longest path than only
|
|
3908
|
+
the first.
|
|
3909
|
+
* src/Test/TestTCompile.rb: Initialize command.
|
|
3910
|
+
* misc/checkin.rb: Fix some bugs for prcs and cvs.
|
|
3911
|
+
|
|
3912
|
+
2004-09-29 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3913
|
+
|
|
3914
|
+
* src/Test/TestTSuite.rb: Reorder, some methods.
|
|
3915
|
+
|
|
3916
|
+
2004-09-29 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3917
|
+
|
|
3918
|
+
* src/Dumper/TracesXml.rb, misc/xml/minus.gif, misc/xml/empty.gif,
|
|
3919
|
+
* misc/xml/general.xsl, misc/xml/join.gif, misc/xml/js.css,
|
|
3920
|
+
* misc/xml/minusbottom.gif, misc/xml/tree.css, misc/xml/specialise.xsl,
|
|
3921
|
+
* misc/xml/plus.gif, misc/xml/joinbottom.gif, misc/xml/line.gif,
|
|
3922
|
+
* misc/xml/plusbottom.gif: Remove from trunk.
|
|
3923
|
+
|
|
3924
|
+
2004-09-29 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3925
|
+
|
|
3926
|
+
Merge from the ACU branch (r35-97).
|
|
3927
|
+
|
|
3928
|
+
2004-09-27 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3929
|
+
|
|
3930
|
+
* src/Test/TestTBase.rb: Use a set to rejected attributes.
|
|
3931
|
+
* src/Test/TestTCmd.rb: Fix the diff generation.
|
|
3932
|
+
* src/Test/TestTCmdDiff.rb: New.
|
|
3933
|
+
|
|
3934
|
+
2004-09-22 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3935
|
+
|
|
3936
|
+
* src/Test/TestTExtract.rb: Use basename before extracting the
|
|
3937
|
+
extension.
|
|
3938
|
+
|
|
3939
|
+
2004-09-22 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3940
|
+
|
|
3941
|
+
* test/all/ball.yml,
|
|
3942
|
+
* test/all/pool_stud.yml,
|
|
3943
|
+
* test/all/stud.yml: Add a dir attribute.
|
|
3944
|
+
* test/all/fatal.yml: Change names.
|
|
3945
|
+
* test/all/wc.yml: TestTSuite(TestT...) is deprecated.
|
|
3946
|
+
* test/all/ball/jack-exit/Makefile,
|
|
3947
|
+
* test/all/ball/joe-exit/Makefile,
|
|
3948
|
+
* test/all/ball/hello/Makefile,
|
|
3949
|
+
* test/all/ball/john-exit/Makefile: Add distclean.
|
|
3950
|
+
* test/all/ball/john-exit.tar.bz2,
|
|
3951
|
+
* test/all/ball/jack-exit.tar.bz2,
|
|
3952
|
+
* test/all/ball/joe-exit.tar.bz2,
|
|
3953
|
+
* test/all/ball/hello.tar.bz2,
|
|
3954
|
+
* test/all/ball/hello.tar.gz: Regen.
|
|
3955
|
+
* src/Test/TestTCmd.rb: Put the stream status only if it's needed.
|
|
3956
|
+
* src/Test/TestTFail.rb,
|
|
3957
|
+
* src/Test/TestTPass.rb: Remove the singleton pattern.
|
|
3958
|
+
* src/Test/TestTConfigure.rb,
|
|
3959
|
+
* src/Test/TestTExtract.rb: Put the sub command fatal.
|
|
3960
|
+
* src/Test/TestTBall.rb: Rearrange attributes.
|
|
3961
|
+
* src/ttk: Add the -D --define option to set a global value.
|
|
3962
|
+
* src/Dumper/TracesXml.rb: Chain with a Filter::Weight.
|
|
3963
|
+
* misc/gendoc.rb: Update.
|
|
3964
|
+
|
|
3965
|
+
2004-09-21 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3966
|
+
|
|
3967
|
+
* src/Test/TestTCmd.rb: Print the status for each stream.
|
|
3968
|
+
* src/Dumper/TracesXml.rb: Typo.
|
|
3969
|
+
|
|
3970
|
+
2004-09-21 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3971
|
+
|
|
3972
|
+
* src/Filter/Weight.rb: Fix.
|
|
3973
|
+
|
|
3974
|
+
2004-09-21 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
3975
|
+
|
|
3976
|
+
* src/Test/TestTSuite.rb: Internal improving.
|
|
3977
|
+
* src/Test/TestTPass.rb,
|
|
3978
|
+
* src/Test/TestTFail.rb,
|
|
3979
|
+
* src/Test/TestTClean.rb,
|
|
3980
|
+
* src/Test/TestTRemoteCmd.rb,
|
|
3981
|
+
* src/Test/TestTGlob.rb,
|
|
3982
|
+
* src/Test/TestTAuthors.rb,
|
|
3983
|
+
* src/Test/TestTCompile.rb,
|
|
3984
|
+
* src/Test/TestTBlock.rb: Update require.
|
|
3985
|
+
* src/Test/TestTCmd.rb: Simplification.
|
|
3986
|
+
* src/Test/TestTExtract.rb: Update print mode.
|
|
3987
|
+
* src/Filter/Base.rb,
|
|
3988
|
+
* src/Test/TestTBase.rb: Add a const_missing for Test autoloading.
|
|
3989
|
+
* src/Test/TestTBall.rb: Use TestTConfigure.
|
|
3990
|
+
* src/Test/TestTConfigure.rb: New.
|
|
3991
|
+
* src/Tools/traverse.rb: Add reverse_fold.
|
|
3992
|
+
* src/ttk: General improving.
|
|
3993
|
+
* src/Loader/Yaml.rb: Convert String hash keys to Symbol.
|
|
3994
|
+
* src/Loader/Base.rb: Factoring name lookup.
|
|
3995
|
+
* src/ttkstat: Remove.
|
|
3996
|
+
* test/all/exit.yml: Remove deprecated syntax TestTSuite(TestT...).
|
|
3997
|
+
* test/all/remote_dispatcher.yml: Refine name class.
|
|
3998
|
+
* test/all/print_mode.yml: Extend.
|
|
3999
|
+
* test/all/mini-lib.yml,
|
|
4000
|
+
* test/mini-lib/strlen.c: Update.
|
|
4001
|
+
* test/all/env_cmd.yml: Update layout.
|
|
4002
|
+
* src/Test/TestTCmdBase.rb: Add a to_s call to match ruby 1.9.
|
|
4003
|
+
|
|
4004
|
+
2004-09-21 Jerome Pouiller <jerome.pouiller@epita.fr>
|
|
4005
|
+
|
|
4006
|
+
* src/Test/TestTBall.rb: Make distclean before configure, display
|
|
4007
|
+
error and standard output.
|
|
4008
|
+
* src/Test/TestTExtract.rb: Correct tar options
|
|
4009
|
+
* src/Dumper/Xml.rb: Updated for intranet display
|
|
4010
|
+
* src/Dumper/TracesXml.rb: Traces are now written in stream before
|
|
4011
|
+
end processing of all tarball.
|
|
4012
|
+
* TODO: Updated
|
|
4013
|
+
|
|
4014
|
+
2004-09-21 Jerome Pouiller <jerome.pouiller@epita.fr>
|
|
4015
|
+
|
|
4016
|
+
* TODO: Updates
|
|
4017
|
+
* src/Test/TestTBall.rb: Changed configure command. I don't know
|
|
4018
|
+
why previous code don't work
|
|
4019
|
+
* src/Dumper/Xml.rb: Updated for ACU intranet display
|
|
4020
|
+
* misc/xml/specialise.xsl: Better display
|
|
4021
|
+
|
|
4022
|
+
2004-09-20 Marco Tessari <marco.tessari@epita.fr>
|
|
4023
|
+
|
|
4024
|
+
* src/Test/TestTBase.rb: Change only the wanted symbol.
|
|
4025
|
+
* src/Test/TestTBall.rb: Add authors attribute to get TracesXml work.
|
|
4026
|
+
* src/Dumper/TracesXml.rb: Search for the right attribute.
|
|
4027
|
+
|
|
4028
|
+
2004-09-18 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4029
|
+
|
|
4030
|
+
* test/all/glob_stud.yml: Update regexp.
|
|
4031
|
+
* src/TTResult.rb: Use symbols instead of constants for messages.
|
|
4032
|
+
* src/DocFilter/DFBasic.rb: Rename to ...
|
|
4033
|
+
* src/Filter/Basic.rb: ... this.
|
|
4034
|
+
* src/DocFilter/DFSummarizePass.rb: Rename to ...
|
|
4035
|
+
* src/Filter/SummarizePass.rb: ... this.
|
|
4036
|
+
* src/DocFilter/DFSummarizeFail.rb: Rename to ...
|
|
4037
|
+
* src/Filter/SummarizeFail.rb: ... this.
|
|
4038
|
+
* src/DocFilter/DFWeight.rb: Rename to ...
|
|
4039
|
+
* src/Filter/Weight.rb: ... this.
|
|
4040
|
+
* src/DocFilter/DFBase.rb: Rename to ...
|
|
4041
|
+
* src/Filter/Base.rb: ... this.
|
|
4042
|
+
* src/DocFilter/DFSummarize.rb: Rename to ...
|
|
4043
|
+
* src/Filter/Summarize.rb: ... this.
|
|
4044
|
+
* src/Dumper/Xml.rb,
|
|
4045
|
+
* src/Dumper/Yaml.rb,
|
|
4046
|
+
* src/Dumper/TracesXml.rb,
|
|
4047
|
+
* src/ttk: Update.
|
|
4048
|
+
|
|
4049
|
+
2004-09-18 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4050
|
+
|
|
4051
|
+
* misc/checkin.rb: Add the option --mail which re-send the last mail.
|
|
4052
|
+
|
|
4053
|
+
2004-09-18 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4054
|
+
|
|
4055
|
+
* src/Test/TestTBlock.rb,
|
|
4056
|
+
* src/Test/TestTExtract.rb,
|
|
4057
|
+
* src/Tools/io/ext.rb,
|
|
4058
|
+
* src/Tools/io/delegator.rb,
|
|
4059
|
+
* src/Tools/cut_output.rb,
|
|
4060
|
+
* src/TTResult.rb,
|
|
4061
|
+
* src/Dumper/Xml.rb,
|
|
4062
|
+
* src/Dumper/Yaml.rb:
|
|
4063
|
+
Remove module TTK::Example, add some nodoc tags, and add some comments.
|
|
4064
|
+
* src/Test/TestTBase.rb: Prefer Exception instead of StandardError.
|
|
4065
|
+
* misc/gendoc.rb: New.
|
|
4066
|
+
|
|
4067
|
+
2004-09-17 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4068
|
+
|
|
4069
|
+
* src/Test/TestTAuthors.rb,
|
|
4070
|
+
* src/Test/TestTCmdBase.rb,
|
|
4071
|
+
* src/Test/TestTFail.rb,
|
|
4072
|
+
* src/Test/TestTExtract.rb,
|
|
4073
|
+
* src/Test/TestTBlock.rb,
|
|
4074
|
+
* src/Test/TestTSuite.rb,
|
|
4075
|
+
* test/all/block.yml: Exception renaming.
|
|
4076
|
+
* src/Test/TestTBase.rb: Likewise and revert patch for <<tags>>
|
|
4077
|
+
expanding.
|
|
4078
|
+
* src/DocFilter/DFLogin.rb,
|
|
4079
|
+
* src/DocFilter/DFSplit.rb: Remove.
|
|
4080
|
+
* test/all/glob_stud.yml: Update <<tags>>.
|
|
4081
|
+
* test/all/author.yml: Update.
|
|
4082
|
+
* test/all/ball/hello.tar.bz2,
|
|
4083
|
+
* test/all/ball/20040804-exam_a1-zapngo-tessar_m.tar.gz,
|
|
4084
|
+
* test/all/ball/hello.tar.gz: Regen.
|
|
4085
|
+
* src/Dumper/TracesXml.rb: Update layout.
|
|
4086
|
+
|
|
4087
|
+
2004-09-17 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4088
|
+
|
|
4089
|
+
* src/DocFilter/DFSummarizePass.rb,
|
|
4090
|
+
* src/DocFilter/DFWeight.rb,
|
|
4091
|
+
* src/DocFilter/DFLogin.rb,
|
|
4092
|
+
* src/DocFilter/DFSummarizeFail.rb,
|
|
4093
|
+
* src/DocFilter/DFBase.rb,
|
|
4094
|
+
* src/DocFilter/DFSplit.rb,
|
|
4095
|
+
* src/DocFilter/DFSummarize.rb,
|
|
4096
|
+
* src/DocFilter/DFBasic.rb,
|
|
4097
|
+
* src/Dumper/TracesXml.rb,
|
|
4098
|
+
* misc/header: Add the email.
|
|
4099
|
+
|
|
4100
|
+
2004-09-17 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4101
|
+
|
|
4102
|
+
* AUTHORS: Add Jerome and Marco.
|
|
4103
|
+
* src/Test/TestTSuite.rb,
|
|
4104
|
+
* src/Test/TestTBlock.rb,
|
|
4105
|
+
* src/Test/TestTBall.rb,
|
|
4106
|
+
* src/Test/TestTBase.rb,
|
|
4107
|
+
* src/Test/TestTExtract.rb,
|
|
4108
|
+
* src/Test/TestTFail.rb,
|
|
4109
|
+
* src/Test/TestTCmdBase.rb,
|
|
4110
|
+
* src/Test/TestTRemoteCmd.rb,
|
|
4111
|
+
* src/Test/TestTClean.rb,
|
|
4112
|
+
* src/Test/TestTCmd.rb,
|
|
4113
|
+
* src/Test/TestTGlob.rb,
|
|
4114
|
+
* src/Test/TestTAuthors.rb,
|
|
4115
|
+
* src/Test/TestTPass.rb,
|
|
4116
|
+
* src/Test/TestTCompile.rb,
|
|
4117
|
+
* src/Tools/mktemp.rb,
|
|
4118
|
+
* src/Tools/CmdResult.rb,
|
|
4119
|
+
* src/Tools/HostDispatcher.rb,
|
|
4120
|
+
* src/Tools/io/dispatch.rb,
|
|
4121
|
+
* src/Tools/io/ext.rb,
|
|
4122
|
+
* src/Tools/io/yaml.rb,
|
|
4123
|
+
* src/Tools/io/delegator.rb,
|
|
4124
|
+
* src/Tools/io/filters.rb,
|
|
4125
|
+
* src/Tools/SymTbl.rb,
|
|
4126
|
+
* src/Tools/traverse.rb,
|
|
4127
|
+
* src/Tools/cut_output.rb,
|
|
4128
|
+
* src/ttk,
|
|
4129
|
+
* src/Loader/Yaml.rb,
|
|
4130
|
+
* src/Loader/Base.rb,
|
|
4131
|
+
* src/TTResult.rb,
|
|
4132
|
+
* src/DocFilter/DFSummarizePass.rb,
|
|
4133
|
+
* src/DocFilter/DFWeight.rb,
|
|
4134
|
+
* src/DocFilter/DFSummarizeFail.rb,
|
|
4135
|
+
* src/DocFilter/DFLogin.rb,
|
|
4136
|
+
* src/DocFilter/DFBase.rb,
|
|
4137
|
+
* src/DocFilter/DFSplit.rb,
|
|
4138
|
+
* src/DocFilter/DFSummarize.rb,
|
|
4139
|
+
* src/DocFilter/DFBasic.rb,
|
|
4140
|
+
* src/Dumper/Xml.rb,
|
|
4141
|
+
* src/Dumper/TracesXml.rb,
|
|
4142
|
+
* src/Dumper/Yaml.rb,
|
|
4143
|
+
* src/ttkstat: Change header.
|
|
4144
|
+
|
|
4145
|
+
2004-09-17 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4146
|
+
|
|
4147
|
+
Add LastChangedBy to svn:keywords for all files.
|
|
4148
|
+
|
|
4149
|
+
2004-09-17 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4150
|
+
|
|
4151
|
+
* test/all/env_cmd.yml: Add a test for <<tags>> in nested values.
|
|
4152
|
+
* src/Test/TestTBase.rb: Fix <<tags>> substitution in nested values.
|
|
4153
|
+
* misc/header: Update (evryone agree with this new format).
|
|
4154
|
+
|
|
4155
|
+
2004-09-17 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4156
|
+
|
|
4157
|
+
* test/all/env_cmd.yml: New.
|
|
4158
|
+
|
|
4159
|
+
2004-09-17 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4160
|
+
|
|
4161
|
+
* test/all/diff_cmd.yml: Rename as ...
|
|
4162
|
+
* test/all/print_mode.yml: ... this.
|
|
4163
|
+
* test/all/ball/jack-exit/exit.c: Add unistd.h.
|
|
4164
|
+
* test/all/ball/jack-exit.tar.bz2: Regen and change svn:mime-type.
|
|
4165
|
+
* src/Test/TestTBase.rb: Fix a bug with @reject.
|
|
4166
|
+
* src/Test/TestTCmd.rb: Add (print_mode=).
|
|
4167
|
+
* src/Tools/io/delegator.rb,
|
|
4168
|
+
* src/Test/TestTBlock.rb: Encapsulate the test in a module
|
|
4169
|
+
TTK::Example.
|
|
4170
|
+
|
|
4171
|
+
2004-09-16 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4172
|
+
|
|
4173
|
+
* src/Test/TestTCmd.rb: Add the environment variables handling in
|
|
4174
|
+
TestTCmd.
|
|
4175
|
+
|
|
4176
|
+
2004-09-16 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4177
|
+
|
|
4178
|
+
* test/mini-lib/strlen.c,
|
|
4179
|
+
* test/mini-lib/Makefile: New.
|
|
4180
|
+
* test/ttk-check: Update to symtbl.
|
|
4181
|
+
|
|
4182
|
+
2004-09-16 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4183
|
+
|
|
4184
|
+
* test/log/stud.yml,
|
|
4185
|
+
* test/log/timeout.yml,
|
|
4186
|
+
* test/log/fatal.yml,
|
|
4187
|
+
* test/log/pipeline-timeout.yml,
|
|
4188
|
+
* test/log/sub.yml,
|
|
4189
|
+
* test/log/block.yml,
|
|
4190
|
+
* test/log/ttk-check-log.yml,
|
|
4191
|
+
* test/log/suite_timeout.yml,
|
|
4192
|
+
* test/log/remote_dispatcher.yml,
|
|
4193
|
+
* test/log/ttk-check-summary.yml,
|
|
4194
|
+
* test/log/pool_stud.yml,
|
|
4195
|
+
* test/log/exit.yml,
|
|
4196
|
+
* test/log/pool.yml,
|
|
4197
|
+
* test/log/wc.yml,
|
|
4198
|
+
* test/log/ball.yml,
|
|
4199
|
+
* test/log/remote_cmd.yml: Remove.
|
|
4200
|
+
|
|
4201
|
+
2004-09-16 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4202
|
+
|
|
4203
|
+
* test/all/glob.yml: Add <<author>>.
|
|
4204
|
+
* test/all/author.yml: Update.
|
|
4205
|
+
* test/all/exit.yml,
|
|
4206
|
+
* test/all/remote_dispatcher.yml: Add weights.
|
|
4207
|
+
* test/all/ball/bar_p-mini-lib/Makefile,
|
|
4208
|
+
* test/all/ball/bar_p-mini-lib/my_strlen.c,
|
|
4209
|
+
* test/all/ball/joe_i-mini-lib/configure,
|
|
4210
|
+
* test/all/ball/joe_i-mini-lib/Makefile,
|
|
4211
|
+
* test/all/ball/joe_i-mini-lib/my_strlen.c,
|
|
4212
|
+
* test/all/ball/foo_s-mini-lib.tar.bz2,
|
|
4213
|
+
* test/all/ball/qux_j-mini-lib/Makefile,
|
|
4214
|
+
* test/all/ball/qux_j-mini-lib/my_strlen.c,
|
|
4215
|
+
* test/all/ball/bar_p-mini-lib.tar.bz2,
|
|
4216
|
+
* test/all/ball/foo_s-mini-lib/configure,
|
|
4217
|
+
* test/all/ball/foo_s-mini-lib/Makefile,
|
|
4218
|
+
* test/all/ball/foo_s-mini-lib/my_strlen.c,
|
|
4219
|
+
* test/all/ball/joe_i-mini-lib.tar.bz2,
|
|
4220
|
+
* test/all/ball/qux_j-mini-lib.tar.bz2,
|
|
4221
|
+
* test/all/mini-lib.yml: New.
|
|
4222
|
+
* test/all/ball/Makefile: Update.
|
|
4223
|
+
|
|
4224
|
+
2004-09-16 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4225
|
+
|
|
4226
|
+
* src/Test/TestTSuite.rb: Convert strings to symbols.
|
|
4227
|
+
* src/Test/TestTFail.rb,
|
|
4228
|
+
* src/Test/TestTPass.rb,
|
|
4229
|
+
* src/Test/TestTCmdBase.rb,
|
|
4230
|
+
* src/Test/TestTRemoteCmd.rb,
|
|
4231
|
+
* src/Tools/HostDispatcher.rb,
|
|
4232
|
+
* src/Test/TestTBlock.rb: Cleaning, add comments.
|
|
4233
|
+
* src/TTResult.rb,
|
|
4234
|
+
* src/Loader/Base.rb,
|
|
4235
|
+
* src/DocFilter/DFLogin.rb,
|
|
4236
|
+
* src/DocFilter/DFSplit.rb,
|
|
4237
|
+
* src/DocFilter/DFSummarize.rb,
|
|
4238
|
+
* src/Dumper/TracesXml.rb,
|
|
4239
|
+
* src/Test/TestTCmd.rb: Convert strings to symbols, and change
|
|
4240
|
+
default values for print_*.
|
|
4241
|
+
* src/Test/TestTGetLogin.rb: Remove.
|
|
4242
|
+
* src/Test/TestTExtract.rb: Improve (use symtbl).
|
|
4243
|
+
* src/Test/TestTBase.rb: Fix symtbl, add the weight attribute.
|
|
4244
|
+
* src/Test/TestTBall.rb: Recode using TestTExtract, and TestTClean.
|
|
4245
|
+
* src/Test/TestTClean.rb: Fix inheritance.
|
|
4246
|
+
* src/Test/TestTGlob.rb: Fix typo, remove split.
|
|
4247
|
+
* src/Test/TestTAuthors.rb: Up to TestTCssAuthors.
|
|
4248
|
+
* src/Test/TestTExamBall.rb: Remove.
|
|
4249
|
+
* src/Tools/SymTbl.rb: Add more tests.
|
|
4250
|
+
* src/Tools/traverse.rb: Add fold.
|
|
4251
|
+
* src/Dumper/Xml.rb: Improve but not totally fix.
|
|
4252
|
+
* src/Dumper/Yaml.rb: Improve dispatching code.
|
|
4253
|
+
* src/ttk: Move BasicObserver class ...
|
|
4254
|
+
* src/DocFilter/DFBasic.rb: ... to here.
|
|
4255
|
+
* src/DocFilter/DFWeight.rb: New.
|
|
4256
|
+
|
|
4257
|
+
2004-09-14 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4258
|
+
|
|
4259
|
+
* src/Tools/SymTbl.rb: New, the symbol table class.
|
|
4260
|
+
* src/Test/TestTBase.rb: Permit to initialize a new test with another,
|
|
4261
|
+
instanciate <<name>> with the symbol table, and epilogue is no more
|
|
4262
|
+
virtual so evry other tests class must use `super'.
|
|
4263
|
+
* src/Test/TestTSuite.rb: Attach the SymTbl in create and
|
|
4264
|
+
use :foo instead of 'foo' in some places.
|
|
4265
|
+
* src/ttk,
|
|
4266
|
+
* src/Test/TestTBall.rb,
|
|
4267
|
+
* src/Test/TestTPass.rb,
|
|
4268
|
+
* src/Test/TestTFail.rb,
|
|
4269
|
+
* src/Test/TestTClean.rb,
|
|
4270
|
+
* src/Test/TestTAuthors.rb,
|
|
4271
|
+
* src/Test/TestTExamBall.rb,
|
|
4272
|
+
* src/Test/TestTBlock.rb: Update.
|
|
4273
|
+
* src/Test/TestTGetLogin.rb,
|
|
4274
|
+
* src/Test/TestTCmdBase.rb: Add super in epilogue.
|
|
4275
|
+
* src/Test/TestTGlob.rb: Use the symtbl to give the tarball name.
|
|
4276
|
+
* src/Dumper/Yaml.rb: Flush the io.
|
|
4277
|
+
|
|
4278
|
+
2004-09-11 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4279
|
+
|
|
4280
|
+
* src/Tools/mktemp.rb: Unlink temfiles at exit.
|
|
4281
|
+
* src/Tools/cut_output.rb: Use InputFilter.
|
|
4282
|
+
* src/Test/TestTCmd.rb: Update.
|
|
4283
|
+
* src/ttk: Use Tempfile.close.
|
|
4284
|
+
|
|
4285
|
+
2004-09-11 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4286
|
+
|
|
4287
|
+
* test/all/remote_dispatcher.yml: Change the host.
|
|
4288
|
+
* src/Test/TestTCmdBase.rb: Add @cmd_exit instead @cmd_result.exit.
|
|
4289
|
+
* src/Test/TestTCmd.rb: Lifting.
|
|
4290
|
+
* src/Tools/mktemp.rb: New version more safe.
|
|
4291
|
+
* src/Tools/CmdResult.rb: Remove exit.
|
|
4292
|
+
* src/Dumper/Xml.rb: Remove yaml require, stringify hash's keys.
|
|
4293
|
+
* src/Dumper/Yaml.rb: Don't yamlize Regexp's and Symbol's.
|
|
4294
|
+
* src/Dumper/XmlTraces.rb: Move to ...
|
|
4295
|
+
* src/Dumper/TracesXml.rb: ... here (cause of options Xml is a prefix
|
|
4296
|
+
of XmlTraces).
|
|
4297
|
+
* test/all/glob.yml: Update.
|
|
4298
|
+
|
|
4299
|
+
2004-09-11 Marco Tessari <marco.tessari@epita.fr>
|
|
4300
|
+
|
|
4301
|
+
* src/Test/TestTCmdBase.rb,
|
|
4302
|
+
* src/Tools/mktemp.rb: Return a temp file string.
|
|
4303
|
+
* src/Test/TestTCmd.rb: Change printing defaults and strategie.
|
|
4304
|
+
* src/Test/TestTBase.rb: Reject initialisation moved.
|
|
4305
|
+
Prologue into begin end block. Fail raise an exeption.
|
|
4306
|
+
Print help with --help Test.
|
|
4307
|
+
* src/Test/TestTBall.rb: Pass dir to sub test.
|
|
4308
|
+
* src/Test/TestTAuthors.rb: Add login attribute.
|
|
4309
|
+
* src/Tools/CmdResult.rb: mktemp instead of Tempfile.
|
|
4310
|
+
* src/ttk: --help Test.
|
|
4311
|
+
* src/DocFilter/DFSplit.rb: Debugging... broken.
|
|
4312
|
+
|
|
4313
|
+
2004-09-10 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4314
|
+
|
|
4315
|
+
* test/all/glob.yml: The attribute tarballs become glob.
|
|
4316
|
+
* test/all/sub.yml: Add names.
|
|
4317
|
+
* test/all/author.yml: The attribute studdir become dir.
|
|
4318
|
+
* test/ttk-check: Update.
|
|
4319
|
+
* src/Test/TestTSuite.rb: Add a default value to :pool.
|
|
4320
|
+
* src/Test/TestTBlock.rb: Update.
|
|
4321
|
+
* src/Test/TestTCmdBase.rb: Command is mandatory.
|
|
4322
|
+
* src/Test/TestTCmd.rb: Factor.
|
|
4323
|
+
* src/Test/TestTGetLogin.rb: Factor.
|
|
4324
|
+
* src/Test/TestTBall.rb,
|
|
4325
|
+
* src/Test/TestTBase.rb,
|
|
4326
|
+
* src/Test/TestTExtract.rb,
|
|
4327
|
+
* src/Test/TestTFail.rb,
|
|
4328
|
+
* src/Test/TestTRemoteCmd.rb,
|
|
4329
|
+
* src/Test/TestTClean.rb,
|
|
4330
|
+
* src/Test/TestTGlob.rb,
|
|
4331
|
+
* src/Test/TestTExamBall.rb,
|
|
4332
|
+
* src/Test/TestTAuthors.rb,
|
|
4333
|
+
* src/Test/TestTCompile.rb,
|
|
4334
|
+
* src/ttk,
|
|
4335
|
+
* src/DocFilter/DFLogin.rb,
|
|
4336
|
+
* src/DocFilter/DFSplit.rb,
|
|
4337
|
+
* src/Dumper/Xml.rb: Update.
|
|
4338
|
+
|
|
4339
|
+
2004-09-08 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4340
|
+
|
|
4341
|
+
* test/all/stud.yml: Add names.
|
|
4342
|
+
* src/Test/TestTSuite.rb,
|
|
4343
|
+
* src/Test/TestTBlock.rb,
|
|
4344
|
+
* src/Test/TestTBase.rb,
|
|
4345
|
+
* src/Test/TestTBall.rb,
|
|
4346
|
+
* src/Test/TestTFail.rb,
|
|
4347
|
+
* src/Test/TestTCmdBase.rb,
|
|
4348
|
+
* src/Test/TestTRemoteCmd.rb,
|
|
4349
|
+
* src/Test/TestTCmd.rb,
|
|
4350
|
+
* src/Test/TestTPass.rb,
|
|
4351
|
+
* src/Loader/Base.rb,
|
|
4352
|
+
* src/Dumper/Yaml.rb,
|
|
4353
|
+
* src/ttk,
|
|
4354
|
+
* test/ttk-check: Add attributes with new format and now run take the
|
|
4355
|
+
result as a parameter.
|
|
4356
|
+
|
|
4357
|
+
2004-09-10 Marco Tessari <marco.tessari@epita.fr>
|
|
4358
|
+
|
|
4359
|
+
* src/Test/TestTCompile.rb: Add -fomit-frame-pointer flag.
|
|
4360
|
+
* src/ttk:
|
|
4361
|
+
* src/Dumper/Xml.rb:
|
|
4362
|
+
* src/Dumper/Yaml.rb:
|
|
4363
|
+
* src/Dumper/XmlTraces.rb: Revert output for Dumper into IO.
|
|
4364
|
+
|
|
4365
|
+
2004-09-08 Marco Tessari <marco.tessari@epita.fr>
|
|
4366
|
+
|
|
4367
|
+
* test/all/stud.yml: Unused comment removed.
|
|
4368
|
+
* src/ttk: Dumper takes a string and not an io on parameter.
|
|
4369
|
+
* src/DocFilter/DFSplit.rb: Call only once dumper.
|
|
4370
|
+
* src/Dumper/Xml.rb: Fixed initialization with string.
|
|
4371
|
+
* src/Dumper/Yaml.rb: Mikewise.
|
|
4372
|
+
* src/Dumper/XmlTraces.rb: New.
|
|
4373
|
+
|
|
4374
|
+
2004-08-19 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4375
|
+
|
|
4376
|
+
* VERSION: Add.
|
|
4377
|
+
* src/ttk: Use Pathname class, improve the option parser, now dumpers
|
|
4378
|
+
and filters are found dynamically, and use VERSION file to display the
|
|
4379
|
+
revision.
|
|
4380
|
+
* src/DocFilter/DFLogin.rb: Fix requires, add FDLoginError.
|
|
4381
|
+
* src/DocFilter/DFSummarize.rb: Fix requires.
|
|
4382
|
+
|
|
4383
|
+
2004-08-10 Jerome Pouiller <jerome.pouiller@epita.fr>
|
|
4384
|
+
|
|
4385
|
+
* TODO: Added some comment in TODO
|
|
4386
|
+
|
|
4387
|
+
2004-08-10 Jerome Pouiller <jerome.pouiller@epita.fr>
|
|
4388
|
+
|
|
4389
|
+
* TODO: Added TODO (in french, sorry). I propose in many
|
|
4390
|
+
improvements, i've found during my beta-testing. Read-it...
|
|
4391
|
+
|
|
4392
|
+
2004-08-10 Jerome Pouiller <jerome.pouiller@epita.fr>
|
|
4393
|
+
|
|
4394
|
+
* src/Dumper/Xml.rb: Cut long ligne at 80 charcaters. Change '\n'
|
|
4395
|
+
in <br />
|
|
4396
|
+
* misc/xml/specialise.xml: renomed in misc/xml/specialise.xsl
|
|
4397
|
+
* misc/xml/general.xsl: many improvement. Adapted and beautiful
|
|
4398
|
+
output now
|
|
4399
|
+
* misc/xml/specialise.xsl: same improvement than sc/xml/general.xsl
|
|
4400
|
+
* misc/xml/general.xml: renomed in misc/xml/general.xsl
|
|
4401
|
+
|
|
4402
|
+
2004-08-08 Jerome Pouiller,,, <jerome.pouiller@epita.fr>
|
|
4403
|
+
|
|
4404
|
+
* misc/xml/TestTKewl.xsl: rename TestTKewl.xsl in general.xsl
|
|
4405
|
+
* misc/intra.xsl: removed
|
|
4406
|
+
* misc/xml/specialise.xml: Is a specialisation of general.xsl.
|
|
4407
|
+
Show how to create new transmations based on general.xsl
|
|
4408
|
+
|
|
4409
|
+
2004-08-08 Jerome Pouiller,,, <jerome.pouiller@epita.fr>
|
|
4410
|
+
|
|
4411
|
+
* test/all/author.yml: Not '_' allowed an firstnmae of student
|
|
4412
|
+
* src/Dumper/Xml.rb: Totaly modified it.
|
|
4413
|
+
- Its output is nice now.
|
|
4414
|
+
- I copy "atribute" node in all element of content list.
|
|
4415
|
+
- It's easy to translate name of balises
|
|
4416
|
+
- There are only three types of node : test, testuit and
|
|
4417
|
+
prop (Testsuit is useless and i think to add "stat" later)
|
|
4418
|
+
* misc/xml/minus.gif, misc/xml/empty.gif, misc/xml/join.gif,
|
|
4419
|
+
misc/xml/js.css, misc/xml/minusbottom.gif, misc/xml/tree.css,
|
|
4420
|
+
misc/xml/plus.gif, misc/xml/joinbottom.gif, misc/xml/line.gif,
|
|
4421
|
+
misc/xml/plusbottom.gif: They are used for output of TestTKewl.xsl
|
|
4422
|
+
* misc/xml/TestTKewl.xsl: Xsl to use with Wml output. Pretty Nice,
|
|
4423
|
+
test it...(Not now, cause of a bug with DFSplit)
|
|
4424
|
+
|
|
4425
|
+
2004-08-07 Marco Tessari <marco.tessari@epita.fr>
|
|
4426
|
+
|
|
4427
|
+
* src/Test/TestTCmd.rb: Fix text output.
|
|
4428
|
+
* src/Test/TestTExtract.rb: Fix attributes visibility, defaults, and
|
|
4429
|
+
mandatory.
|
|
4430
|
+
* src/Test/TestTGlob.rb: Fix creation for base tests.
|
|
4431
|
+
* src/Test/TestTCompile.rb: Really compile.
|
|
4432
|
+
* src/ttk: main encapsulate with a begin rescue block.
|
|
4433
|
+
* src/Loader/Base.rb: require the base filename not the full path,
|
|
4434
|
+
elsewhere conflict with other require.
|
|
4435
|
+
* misc/checkin.rb: Fix output for mail addresses.
|
|
4436
|
+
|
|
4437
|
+
2004-08-06 Marco Tessari <marco.tessari@epita.fr>
|
|
4438
|
+
|
|
4439
|
+
* test/all/glob.yml, test/all/author.yml,
|
|
4440
|
+
test/all/ball/20040804-exam_a1-zapngo-tessar_m.tar.gz: New.
|
|
4441
|
+
* src/Test/TestTSuite.rb: Prevent for mothod redefinition.
|
|
4442
|
+
* src/Test/TestTGetLogin.rb, src/Test/TestTExtract.rb,
|
|
4443
|
+
* src/Test/TestTClean.rb, src/Test/TestTGlob.rb,
|
|
4444
|
+
* src/Test/TestTAuthors.rb, src/Test/TestTExamBall.rb,
|
|
4445
|
+
* src/Test/TestTCompile.rb: New.
|
|
4446
|
+
* src/Test/TestTBase.rb (fail): Add a reason
|
|
4447
|
+
* src/ttk: Add none filter. Split filter also call Login filter.
|
|
4448
|
+
Fix a bug on include option.
|
|
4449
|
+
* src/DocFilter/DFBase.rb: Change to work with new filters.
|
|
4450
|
+
* src/DocFilter/DFSummarize.rb: Inherite from DFBase.
|
|
4451
|
+
* src/DocFilter/DFLogin.rb, src/DocFilter/DFSplit.rb: New
|
|
4452
|
+
* misc/checkin.rb: Initialize @subject.
|
|
4453
|
+
|
|
4454
|
+
|
|
4455
|
+
2004-08-06 Marco Tessari <marco.tessari@epita.fr>
|
|
4456
|
+
|
|
4457
|
+
* test/all/diff_cmd.yaml: Rename as ...
|
|
4458
|
+
* test/all/diff_cmd.yml: this.
|
|
4459
|
+
* src/ttk: Rewrite option parsing using optparse. Set warnings.
|
|
4460
|
+
* src/Dumper/Xml.rb: Unit testing fix.
|
|
4461
|
+
|
|
4462
|
+
2004-08-05 Jerome Pouiller <jerome.pouiller@epita.fr>
|
|
4463
|
+
|
|
4464
|
+
* src/Test/TestTCmd.rb: Added inputm output ans error attributes
|
|
4465
|
+
* src/ttk: --wml was don't work
|
|
4466
|
+
* src/Dumper/Xml.rb: improve output
|
|
4467
|
+
* misc/intra.xsl: improve xsl
|
|
4468
|
+
|
|
4469
|
+
2004-08-05 Jerome Pouiller <jerome.pouiller@epita.fr>
|
|
4470
|
+
|
|
4471
|
+
* misc/intra.xsl: Added xslt for xml output.
|
|
4472
|
+
|
|
4473
|
+
2004-08-05 Marco Tessari <marco.tessari@epita.fr>
|
|
4474
|
+
|
|
4475
|
+
* test/all/no_suite.yml: New. A test without TestTSuite but multple
|
|
4476
|
+
Tests.
|
|
4477
|
+
* test/all/fatal.yml: Tests names more explicit.
|
|
4478
|
+
* test/all/diff_cmd.yaml: New. Test a TestTCmd which fail.
|
|
4479
|
+
* src/Test/TestTCmd.rb: Fix, nil separator don't work. Use File.zero?
|
|
4480
|
+
to test an empty file.
|
|
4481
|
+
* src/Tools/traverse.rb: Fix. Redifine method warning.
|
|
4482
|
+
* src/ttk: More command line options. Add testsuite Tests dir to
|
|
4483
|
+
load path.
|
|
4484
|
+
* src/TTResult.rb (current_seq): Initialize.
|
|
4485
|
+
* misc/checkin: Call checkin.rb with warnings.
|
|
4486
|
+
* misc/checkin.rb: Fix warnings. Fix getpwnam call.
|
|
4487
|
+
|
|
4488
|
+
2004-08-05 J�r�me Pouiller <jerome.pouiller@epita.fr>
|
|
4489
|
+
|
|
4490
|
+
* src/ttk: Add Xml to Dumper list
|
|
4491
|
+
* src/Dumper/Xml.rb: Added Xml output
|
|
4492
|
+
|
|
4493
|
+
2004-07-30 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4494
|
+
|
|
4495
|
+
* misc/checkin: Add wrapper for checkin.rb.
|
|
4496
|
+
* misc/checkin.rb: Add.
|
|
4497
|
+
|
|
4498
|
+
2004-07-30 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4499
|
+
|
|
4500
|
+
* test/all/pipeline-timeout.yml,
|
|
4501
|
+
* test/all/fatal.yml,
|
|
4502
|
+
* test/all/pool.yml,
|
|
4503
|
+
* test/all/wc.yml,
|
|
4504
|
+
* test/all/timeout.yml: Compress. Only one doc by file.
|
|
4505
|
+
* test/all/sub.yml: Use allways the current ttk.
|
|
4506
|
+
* test/all/exit.yml: Set the title.
|
|
4507
|
+
* test/all/factory_timeout.yml: Rename to ...
|
|
4508
|
+
* test/all/suite_timeout.yml: ... this.
|
|
4509
|
+
* test/log/factory_timeout.yml: Rename to ...
|
|
4510
|
+
* test/log/suite_timeout.yml: ... this.
|
|
4511
|
+
* test/log/ttk-check-log.yml,
|
|
4512
|
+
* test/log/ttk-check-summary.yml: Regen.
|
|
4513
|
+
* test/ttk-check: Check the output the reference.
|
|
4514
|
+
* src/Test/TestTBase.rb: Add the dumper.
|
|
4515
|
+
* src/Test/TestTCmdBase.rb: Change the substitution order.
|
|
4516
|
+
* src/Test/TestTCmd.rb: Use ttk as the default command in mode `sub'.
|
|
4517
|
+
* src/ttk: Simplify.
|
|
4518
|
+
* src/Loader/Base.rb: Name fix.
|
|
4519
|
+
* src/Dumper/Yaml.rb: Add a special case for strings with \n.
|
|
4520
|
+
|
|
4521
|
+
2004-07-27 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4522
|
+
|
|
4523
|
+
* src/Test/TestTSuite.rb,
|
|
4524
|
+
* src/Test/TestTBall.rb,
|
|
4525
|
+
* src/Test/TestTBase.rb,
|
|
4526
|
+
* src/Test/TestTBlock.rb,
|
|
4527
|
+
* src/Test/TestTCmdBase.rb,
|
|
4528
|
+
* src/Test/TestTCmd.rb: Rename `logger' to `result'.
|
|
4529
|
+
* src/Tools/traverse.rb: Add.
|
|
4530
|
+
* src/TTResult.rb: Add the header, remove a cloned part.
|
|
4531
|
+
|
|
4532
|
+
2004-07-27 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4533
|
+
|
|
4534
|
+
Use TTResult class instead of a logger.
|
|
4535
|
+
But already use the name `logger', it will be replace in future.
|
|
4536
|
+
|
|
4537
|
+
* src/TTResult.rb: Add the result datastruct which follow the design
|
|
4538
|
+
pattern: observable.
|
|
4539
|
+
* src/Dumper/Yaml.rb: Add a yaml dumper as a TTResult observer.
|
|
4540
|
+
* src/Loader/Base.rb: Add an abstract loader.
|
|
4541
|
+
* src/Loader/Yaml.rb: Sub class of Loader::Base.
|
|
4542
|
+
* src/DocFilter/DFSummarizePass.rb,
|
|
4543
|
+
* src/DocFilter/DFSummarizeFail.rb: Fix morph_status.
|
|
4544
|
+
* src/DocFilter/DFSummarize.rb: Is now an observer.
|
|
4545
|
+
* src/ttkstat,
|
|
4546
|
+
* src/Test/TestTSuite.rb,
|
|
4547
|
+
* src/Test/TestTBase.rb,
|
|
4548
|
+
* src/Test/TestTBlock.rb,
|
|
4549
|
+
* src/Test/TestTCmdBase.rb,
|
|
4550
|
+
* src/Test/TestTCmd.rb,
|
|
4551
|
+
* src/ttk,
|
|
4552
|
+
* test/ttk-check: Update.
|
|
4553
|
+
|
|
4554
|
+
2004-07-23 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4555
|
+
|
|
4556
|
+
* src/Tools/io/ext.rb: A puts is better here.
|
|
4557
|
+
|
|
4558
|
+
2004-07-23 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4559
|
+
|
|
4560
|
+
* src/Tools/io/ext.rb: Little fix.
|
|
4561
|
+
* src/ttk: Stdin handling.
|
|
4562
|
+
* src/Loader/Yaml.rb: Do nothing when the test is already loaded.
|
|
4563
|
+
* src/ttkstat: Add summarize-pass and summarize-fail options.
|
|
4564
|
+
|
|
4565
|
+
2004-07-23 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4566
|
+
|
|
4567
|
+
* src/DocFilter/DFSummarizePass.rb: Add.
|
|
4568
|
+
* src/DocFilter/DFSummarizeFail.rb: Add.
|
|
4569
|
+
* src/DocFilter/DFBase.rb: Improve the pretty print.
|
|
4570
|
+
* src/DocFilter/DFSummarize.rb: Split.
|
|
4571
|
+
|
|
4572
|
+
2004-07-23 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4573
|
+
|
|
4574
|
+
* test/all/sub.yml: Use TestTCmd with the sub option.
|
|
4575
|
+
* test/all/block.yml: Add.
|
|
4576
|
+
* test/all/remote_dispatcher.yml: Use real machines, and use md5sum.
|
|
4577
|
+
* test/all/pool_stud.yml: Change the name.
|
|
4578
|
+
* test/all/ball/hello.tar.gz: Add.
|
|
4579
|
+
* test/all/ball/Makefile: Support gz.
|
|
4580
|
+
* test/all/ball.yml: Use hello.tar.gz.
|
|
4581
|
+
* test/log/pool_stud.yml,
|
|
4582
|
+
* test/log/block.yml: Regen.
|
|
4583
|
+
|
|
4584
|
+
2004-07-23 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4585
|
+
|
|
4586
|
+
* src/Test/TestTSuite.rb (instance_variable_{set,get}): Clean the key.
|
|
4587
|
+
* src/Test/TestTSub.rb: Remove.
|
|
4588
|
+
* src/Test/TestTBall.rb: Use a suite.
|
|
4589
|
+
* src/Test/TestTBase.rb: Add an exception system of failure.
|
|
4590
|
+
* src/Test/TestTBlock.rb: Add.
|
|
4591
|
+
* src/Test/TestTCmdBase.rb: Improve the command format.
|
|
4592
|
+
* src/Test/TestTRemoteCmd.rb: Add a new line.
|
|
4593
|
+
* src/Test/TestTCmd.rb: Add a sub mode to replace TestTSub.
|
|
4594
|
+
|
|
4595
|
+
2004-07-21 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4596
|
+
|
|
4597
|
+
* test/log/ttk-check-summary.yml: Add the ref summary.
|
|
4598
|
+
* test/log/ttk-check-log.yml: Add the ref output log.
|
|
4599
|
+
* test/log/stud.yml,
|
|
4600
|
+
* test/log/timeout.yml,
|
|
4601
|
+
* test/log/fatal.yml,
|
|
4602
|
+
* test/log/pipeline-timeout.yml,
|
|
4603
|
+
* test/log/sub.yml,
|
|
4604
|
+
* test/log/remote_dispatcher.yml,
|
|
4605
|
+
* test/log/pool_stud.yml,
|
|
4606
|
+
* test/log/exit.yml,
|
|
4607
|
+
* test/log/pool.yml,
|
|
4608
|
+
* test/log/wc.yml,
|
|
4609
|
+
* test/log/ball.yml,
|
|
4610
|
+
* test/log/factory_timeout.yml,
|
|
4611
|
+
* test/log/remote_cmd.yml: Regen.
|
|
4612
|
+
|
|
4613
|
+
2004-07-21 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4614
|
+
|
|
4615
|
+
* src/Tools/io/yaml.rb: Improve the pretty printer to have a
|
|
4616
|
+
cleanner yaml output.
|
|
4617
|
+
* src/Tools/io/filters.rb (puts): Fix a bug you don't give arguments.
|
|
4618
|
+
* src/ttk: Little change in the suite creation.
|
|
4619
|
+
* src/DocFilter/DFBase.rb: Clean the yaml output.
|
|
4620
|
+
* src/DocFilter/DFSummarize.rb: Remove some code duplications.
|
|
4621
|
+
* src/Test/TestTBase.rb: Fix a bug, you can now have an attributes
|
|
4622
|
+
with `false' as value.
|
|
4623
|
+
* test/ttk-check: Improve options.
|
|
4624
|
+
* src/Test/TestTSub.rb: Clean milogue.
|
|
4625
|
+
* test/all/exit.yml: Remove the prefix `/usr/bin` for true and false.
|
|
4626
|
+
|
|
4627
|
+
2004-06-18 Nicolas Pouillard <ertai@lrde.epita.fr>
|
|
4628
|
+
|
|
4629
|
+
Initial checkin.
|