#!/bin/sh

set -e

# Check that python C extension is built correctly.
python3 -c "
from ovs import _json
import ovs.json
assert ovs.json.from_string('{\"a\": 42}') == {'a': 42}"
