2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-22 09:58:01 +00:00
ovs/tests/ovsdb-column.at

14 lines
447 B
Plaintext
Raw Normal View History

2009-11-04 15:11:44 -08:00
AT_BANNER([OVSDB -- columns])
OVSDB_CHECK_POSITIVE_CPY([ordinary column],
2009-11-04 15:11:44 -08:00
[[parse-column mycol '{"type": "integer"}']],
[[{"type":"integer"}]])
OVSDB_CHECK_POSITIVE_CPY([immutable column],
2009-11-04 15:11:44 -08:00
[[parse-column mycol '{"type": "real", "mutable": false}']],
[[{"mutable":false,"type":"real"}]])
OVSDB_CHECK_POSITIVE_CPY([ephemeral column],
2009-11-04 15:11:44 -08:00
[[parse-column mycol '{"type": "uuid", "ephemeral": true}']],
[[{"ephemeral":true,"type":"uuid"}]])