Overview
Context
Changes
Added tests/tests/manual_example/results/results.csv version [5aae106e5b].
|
1
|
+
|
category, variable, expected, value, tol, units, comment
|
Added tests/tests/manual_example/runsetupxterm.sh version [de48b1c9d6].
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
+
+
+
+
+
+
+
+
+
+
+
+
+
|
#!/bin/bash
if [[ $TARGETDISPLAY = "" || $TARGETHOST = "" || $TARGETDIR = "" || $TARGETUSER = "" ]]; then
msg="You must set the TARGETDISPLAY, TARGETHOST, TARGETDIR and TARGETUSER variables for manual tests"
echo $msg
megatest -test-status :state COMPLETED :status FAIL -m $msg
exit 1
else
megatest -step setup :state start :status n/a
xterm -display $TARGETDISPLAY -e ./setupremote.sh
megatest -step setup :state end :status $?
fi
|
| | | | | | | | | | | |
Added tests/tests/manual_example/setupremote.sh version [a524ae8e7a].
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
#!/bin/bash
megatest -step rsyncto :state start :status n/a
echo "First, lets populate your area with necessary files, you may be prompted for your Unix password several times"
rsync -avz $MT_TEST_RUN_DIR/ $TARGETUSER@$TARGETHOST:$TARGETDIR
megatest -step rsyncto :state end :status n/a
megatest -step runtest :state start :status n/a
remotecmd="cd $TARGETDIR;xterm -display $TARGETDISPLAY"
echo Launching $remotecmd on $TARGETHOST as $TARGETUSER
ssh $TARGETUSER@$TARGETHOST $remotecmd
megatest -step runtest :state end :status $?
megatest -step gatherdata :state start :status n/a
rsync -avz $TARGETUSER@$TARGETHOST:$TARGETDIR/results/ $MT_TEST_RUN_DIR/results/
if [[ -e $MT_TEST_RUN_DIR/results/results.csv ]]; then
megatest -load-data < $MT_TEST_RUN_DIR/results/results.csv
fi
if [[ -e $MT_TEST_RUN_DIR/results/final_results.log && $MT_TEST_RUN_DIR/final_results.logpro ]]; then
logpro $MT_TEST_RUN_DIR/final_results.logpro $MT_TEST_RUN_DIR/final_results.html < $MT_TEST_RUN_DIR/results/final_results.log
if [[ $? = 0 ]]; then
finalstatus=PASS
else
finalstatus=FAIL
fi
megatest -test-status :state COMPLETED :status $finalstatus -setlog final_results.html
fi
|
| | | | | | | | | | | | | | | | | | | | | | | | | | |
Added tests/tests/manual_example/testconfig version [a183e20093].
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
+
+
+
+
+
+
+
+
+
+
+
+
+
|
[setup]
[ezsteps]
setup ./runsetupxterm.sh
# launch launchxterm
[test_meta]
author matt
owner bob
description This test runs a single ezstep which is expected to pass
using a simple logpro file.
tags first,single
reviewed 09/10/2011, by Matt
|
| | | | | | | | | | | |