Skip to Content

Offsite blog roll

Posted on  by  from the site Ninja Verification
This may seem obvious, but don’t use git push like CVS commit. Repositories should be accepting commits by pulling them, not pushing them. CVS commit may be your integration strategy in a simple world without branches, but git push shouldn’t … Continue reading →...
Posted on  by  from the site Ninja Verification
I recently purchased Pro Git at my local Chapters bookstore. After reading it, I discovered I could get it for free on-line, but that did not make me feel bad, on the contrary! In a week, I had taken it everywhere, and showed it to half a dozen people. The reason I blog about this book [...]...
Posted on  by  from the site Ninja Verification
I recently wrote an article published on AgileSOC titled A Continuous Integration System For ASIC Development. Hope you enjoy it! ...
Uncategorized
Posted on  by  from the site Ninja Verification
In a previous article, I discussed a hypothetical Platform LSF command, bwait, which would waits for LSF jobs to complete before returning. Another command that I would like to see in the Platform LSF suite of commands is a command to track parent-child relationship between jobs. Linux has a pstree command, LSF could have a [...]...
asic verification
Posted on  by  from the site Ninja Verification
In the spirit of the POSIX wait command, Platform LSF should have a bwait command. It should work in a way similar to this: $ bwait 7372 7378 7123 7812 Passed: 7812 Failed: 7372 Failed: 7123 Passed: 7378 $ echo $? 1 Let’s explain how this hypothetical command would work. As its name suggests, it is a command that waits for LSF jobs [...]...
asic verification
Posted on  by  from the site Ninja Verification
In software design, a continuous integration system is a system for compiling and testing code on a continuous basis. When a build fails, the code is rejected and the owner notified. When the code is good (compiles okay and sanity tests pass), the code is accepted and is made available for distributing to the development [...]...
Posted on  by  from the site Ninja Verification
A way to solve this problem, which I presented in a previous post, was found with the help from the gurus on #bash. The easy way to make this work is to save the arguments to a file, one per line, and read them back at the other end. Using bash syntax for arrays "${a[@]}” [...]...
asic verification, bash, ssh
Posted on  by  from the site Ninja Verification
Wrapping ssh inside a script and passing it arbitrary commands is hard. What I am trying to do here is to come up with a generic way to invoke an ssh-wrapper, have it record the $(pwd), perform an ssh to a remote host, and at the remote host, reposition inside $(pwd), and run an arbitrary, [...]...
asic verification, ssh
Posted on  by  from the site Ninja Verification
Environment modules is a nice software environment that lets you switch verilog simulator version very easily without having to edit your environment (.cshrc or other). But it seems to have some drawbacks. One of which is that is does not return proper exit status when it fails, making it hard to write scripts that fail [...]...
asic verification
Posted on  by  from the site Ninja Verification
This is the best rant on the demise of the goto statement I have ever heard. It is from the Tango conference 2008 - Fibers talk by Mikola Lysenko. If you fast forward to 23 min 05 secs, you will hear this: One way you can think about states [in a state machine] is that they’re [...]...