~ubuntu-branches/debian/jessie/eso-midas/jessie

« back to all changes in this revision

Viewing changes to test/prim/midcheck

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2014-04-22 14:44:58 UTC
  • Revision ID: package-import@ubuntu.com-20140422144458-okiwi1assxkkiz39
Tags: upstream-13.09pl1.2+dfsg
ImportĀ upstreamĀ versionĀ 13.09pl1.2+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
rm -f ./midasparallel*.log
 
4
 
 
5
./midasparallel 1 &
 
6
./midasparallel 2 &
 
7
./midasparallel 3 &
 
8
./midasparallel 4 &
 
9
./midasparallel 5 &
 
10
./midasparallel 6 &
 
11
./midasparallel 7 &
 
12
./midasparallel 8 &
 
13
./midasparallel 9 &
 
14
./midasparallel 10 &
 
15
 
 
16
exit
 
17
 
 
18
#
 
19
# check if there are some dead bodies left...
 
20
 
 
21
ps aux | grep idiserv
 
22
ps aux | grep inmidas
 
23
 
 
24