Difference between revisions of "Duby/dubyline"
(Created page with "Dubyline is a command-line debugger implemented using dubylib. This is the primary tool for testing dubylib. ==See Also== * duby Category:Duby") |
m (→See Also) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
Dubyline is a command-line debugger implemented using dubylib. | Dubyline is a command-line debugger implemented using dubylib. | ||
+ | |||
+ | (dubyline - '''duby''' command-'''line''' debugger) | ||
This is the primary tool for testing dubylib. | This is the primary tool for testing dubylib. | ||
+ | ==Test tool== | ||
+ | dubyline could be used as an utility to test '''dubylib''' features. | ||
+ | |||
+ | A new feature should be added as a new-command into the debugger. Alternatively an existing command could be extended. | ||
+ | |||
+ | It's very easy to prepare dubyline for a certain test, by passing commands to be executed in a file. | ||
+ | dubyline -cmd listofcmds.txt target.exe | ||
+ | This allows to automate the process of testing features. | ||
+ | |||
==See Also== | ==See Also== | ||
* [[duby]] | * [[duby]] | ||
[[Category:Duby]] | [[Category:Duby]] |
Latest revision as of 09:27, 30 October 2017
Dubyline is a command-line debugger implemented using dubylib.
(dubyline - duby command-line debugger)
This is the primary tool for testing dubylib.
Test tool
dubyline could be used as an utility to test dubylib features.
A new feature should be added as a new-command into the debugger. Alternatively an existing command could be extended.
It's very easy to prepare dubyline for a certain test, by passing commands to be executed in a file.
dubyline -cmd listofcmds.txt target.exe
This allows to automate the process of testing features.