bstinson / centos / t_functional

Forked from centos/t_functional 3 years ago
Clone
Blob Blame History Raw
#!/bin/sh
# Author: Athmane Madjoudj <athmanem@gmail.com>

t_Log "Running $0 - check that sqlite can create database and tables."

sqlite3 /tmp/tf_test.db 'drop table if exists tf_table;'
sqlite3 /tmp/tf_test.db 'create table tf_table(text, id INTEGER);'

t_CheckExitStatus $?