Code

Simple bash script to allow testing of concurrent access from different processes...
[gosa.git] / gosa-si / tests / run_sqlite-check-concurrency.pl
1 #!/bin/bash
3 rm test.sqlite*
5 for (( i=1; $i <= 10; i++ ))
6 do
7         ./sqlite-check-concurrency.pl &
8 done