Megatest

Check-in [7996cd995c]
Login
Overview
Comment:Added some time-taking steps to a test
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 7996cd995c41e83b7311cc8f8f70af4fb7e5202f
User & Date: matt on 2012-02-26 16:29:44
Other Links: manifest | tags
Context
2012-02-26
16:44
Put the cached update into a transaction to speed it up check-in: f6cfd4c688 user: matt tags: trunk
16:29
Added some time-taking steps to a test check-in: 7996cd995c user: matt tags: trunk
16:19
Caching, rpc all working fairly well check-in: 015df64528 user: matt tags: trunk
Changes

Modified tests/tests/lineitem_pass/main.sh from [646cd68645] to [c43fd19ef0].

8
9
10
11
12
13
14






15
16
foo,       bal,    -1.1,    0,      <   ,         , Check for overload
foo,       alb,     1.2,  1.2,      <=  ,     Amps, This is the high power circuit test
foo,       abl,     1.2,  1.3,      0.1
foo,       bra,     1.2, pass,      silly stuff
faz,       bar,      10,  8mA,          ,         ,"this is a comment"
EOF







# Needed to force rolling up the results and set the test to COMPLETED
$MT_MEGATEST -test-status :state COMPLETED :status AUTO







>
>
>
>
>
>


8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
foo,       bal,    -1.1,    0,      <   ,         , Check for overload
foo,       alb,     1.2,  1.2,      <=  ,     Amps, This is the high power circuit test
foo,       abl,     1.2,  1.3,      0.1
foo,       bra,     1.2, pass,      silly stuff
faz,       bar,      10,  8mA,          ,         ,"this is a comment"
EOF

# a bunch of steps in 2 second increments
for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17;do
  $MT_MEGATEST -step step$i :state start :status running -setlog results$i.html
  sleep 2
  $MT_MEGATEST -step step$i :state end :status 0
done
# Needed to force rolling up the results and set the test to COMPLETED
$MT_MEGATEST -test-status :state COMPLETED :status AUTO