Correct iostat command on darwin
[MogileFS-Server.git] / TESTING
blob28dbd4d7caf6d4458f666f5e094bd02b7c27cb19
1 Testing under MySQL:
2 --------------------
3 We use the default 'test' user whom is allowed to connect to the 'test' database from localhost only.
4 # make test \
5         MOGTEST_DBUSER=test \
6         MOGTEST_DBNAME=test \
7         MOGTEST_DBTYPE=MySQL
9 Testing under Postgresql:
10 -------------------------
11 Database setup:
12 # createuser -SRlD mogile
13 # createdb -E UTF8 -O mogile tmp_mogiletest
15 To run the tests:
16 # make test \
17         MOGTEST_DBUSER=mogile \
18         MOGTEST_DBNAME=tmp_mogiletest \
19         MOGTEST_DBTYPE=Postgres
21 Testing under SQLite:
22 ---------------------
23 # make test \
24         MOGTEST_DBUSER=mogile \
25         MOGTEST_DBNAME=tmp_mogiletest \
26         MOGTEST_DBTYPE=SQLite