Using Python to test system behaviorJuly 19, 2006
One of the things I like about the Python interpreter is that it is just about right for doing little system behavior tests, like how various systems handled a TCP port binding issue. This is because Python is low level enough to be relatively close to the actual system, so you can be pretty sure that what you're seeing isn't Python-specific behavior, while at the same time being high level enough that you can do the tests in a couple of lines. Strictly speaking you don't need an interpreter for this, just a language at the right level, but having an interpreter avoids the whole drag of editing and running and re-editing and re-running and so on. (And theoretically you can write this stuff directly in C, but I'm
certainly not familiar enough with things like the C socket API that I
can toss off test programs for this in ten minutes or less. In Python
I can bind a socket in three statements, and one of them is ' So today when I wanted to see how
and in the other I typed:
And the Solaris 9 machine promptly spewed a traceback complaining about
' (One comment.)
|
These are my WanderingThoughts GettingAround This is part of CSpace, and is written by ChrisSiebenmann. * * * Atom feeds are available; see the bottom of most pages. Categories: links, linux, programming, python, snark, solaris, spam, sysadmin, tech, unix, web |