blob: 1cc3b93d93abea28c0e0bac5088ec97ef7e99311 [file] [log] [blame]
Dimitrios Mavrommatisa9df5962017-12-05 15:11:04 -08001#!/bin/sh
2
3./addDPN.sh 1 &> /dev/null
4
Dimitrios Mavrommatis15405af2017-12-05 19:55:29 -08005for (( i=1; i<=100; i++)); do
Dimitrios Mavrommatisa9df5962017-12-05 15:11:04 -08006 ./configureCreateOrUpdate.sh create $i 1 &> /dev/null &
Dimitrios Mavrommatis15405af2017-12-05 19:55:29 -08007 if ! (($i % 10)); then
Dimitrios Mavrommatisa9df5962017-12-05 15:11:04 -08008 wait
9 fi
10done
11
Dimitrios Mavrommatis15405af2017-12-05 19:55:29 -080012#for (( i=1; i<=100; i++)); do
13# ./configureDeleteOrQuery.sh delete $i &> /dev/null &
14# if ! (($i % 10)); then
15# wait
16# fi
17#done
Dimitrios Mavrommatisa9df5962017-12-05 15:11:04 -080018
Dimitrios Mavrommatis15405af2017-12-05 19:55:29 -080019./deleteDPN.sh 1 &> /dev/null