and added files
[bcm963xx.git] / userapps / opensource / net-snmp / testing / T2.sh
1 #!/bin/sh
2 #
3 # T.sh
4 #
5 # FIX  Short description.
6 #
7
8 . eval_tools.sh
9
10 HEADER a short description of your test
11
12 #------------------------------------ -o- 
13 # Test.
14 #
15
16 # Start the agent if needed (make sure it stop it below)
17 STARTAGENT
18
19 CAPTURE "<executable_with_arguments:_stores_stdout/stderr_for_use_later>"
20
21 CHECKEXACT "<string_to_look_for_an_exact_match_of_in_the_CAPTUREd_file_output>"
22 [ $? -eq 1 ]
23 FAILED $? "<diagnostic_label>"
24
25 #------------------------------------ -o- 
26 # Cleanup, exit.
27 #
28
29 # Stop the agent if necessary
30 STOPAGENT
31
32 FINISHED