ovsdb-idl: Test script for Python register_columns function
authorShad Ansari <shad.ansari@hp.com>
Wed, 7 Oct 2015 20:52:11 +0000 (13:52 -0700)
committerBen Pfaff <blp@nicira.com>
Tue, 13 Oct 2015 23:10:43 +0000 (16:10 -0700)
commit01dc151684a2deca7aa7bcd43c7b21da84140bf7
treee68bd4643fbea9a9da41306f02026da537421ccc
parentc2926d6d1cfd62b6d1fbab5497f61de98144f205
ovsdb-idl: Test script for Python register_columns function

Add test scripts to exercise the register_columns() function of the
Python IDL. Add ability to specify columns in the "idl" command of
test-ovsdb.py. All columns of all tables are monitored by default.
The new "?" option can be used to monitor specific Table:Column(s).
The table and their columns are listed as a string of the form starting
with "?":
      ?<table-name>:<column-name>,<column-name>,...
  e.g.:
      ?simple:b - Monitor column "b" in table "simple"
  Entries for multiple tables are seperated by "?":
      ?<table-name>:<column-name>,...?<table-name>:<column-name>,...
  e.g.:
      ?simple:b?link1:i,k - Monitor column "b" in table "simple",
                            and column "i", "k" in table "link1"

Signed-off-by: Shad Ansari <shad.ansari@hp.com>
Signed-off-by: Ben Pfaff <blp@nicira.com>
AUTHORS
tests/ovsdb-idl.at
tests/test-ovsdb.py