${tmpdir}/mysqld_dir/mysqld.socket --port 8440 --pid-file
${tmpdir}/mysqld_dir/mysqld.pid --tmpdir ${tmpdir}/mysqld_dir/tmp &
You can connect to this instance using mysql client.
$ mysql -u root -S ${tmpdir}/mysqld_dir/mysqld.socket
At this point you can run normal SQL. To double check, run:
use cidb; show tables;
You can then use the data here to create your own integration test to test something you added to CIDB.
When you're done, remember to shutdown the mysqld instance, and delete the temporary directory.
$ mysqladmin -u root -S ${tmpdir}/mysqld_dir/mysqld.socket shutdown $ rm -rf ${tmpdir}