You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
QA/tests/p_sqlite/sqlite_select_table.sh

9 lines
221 B

#!/bin/sh
# Author: Athmane Madjoudj <athmanem@gmail.com>
t_Log "Running $0 - check that sqlite can select from table."
sqlite3 /tmp/tf_test.db "select * from tf_table;" | grep -q 'tf_sample_text'
t_CheckExitStatus $?