~ubuntu-branches/ubuntu/warty/dejagnu/warty

« back to all changes in this revision

Viewing changes to example/hello/testsuite/lib/helloworld.exp

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Jacobowitz
  • Date: 2004-02-09 15:07:58 UTC
  • Revision ID: james.westby@ubuntu.com-20040209150758-oaj7r5zrop60v8sb
Tags: upstream-1.4.4
ImportĀ upstreamĀ versionĀ 1.4.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
puts "DEBUG: lib/helloworld.exp is being loaded"
 
3
 
 
4
proc helloworld_version {args} {
 
5
    puts "DEBUG: helloworld_version executed with arguments ${args}"
 
6
}
 
7
 
 
8
proc helloworld_load {args} {
 
9
    puts "DEBUG: helloworld_load executed with arguments ${args}"
 
10
}
 
11
 
 
12
proc helloworld_finish {args} {
 
13
    puts "DEBUG: helloworld_finish executed with arguments ${args}"
 
14
}
 
15
 
 
16
proc helloworld_exit {args} {
 
17
    puts "DEBUG: helloworld_exit executed with arguments ${args}"
 
18
}
 
19
 
 
20
proc helloworld_start {args} {
 
21
    puts "DEBUG: helloworld_start executed with arguments ${args}"
 
22
}
 
23
 
 
24
proc helloworld_init {args} {
 
25
    puts "DEBUG: helloworld_init executed with arguments ${args}"
 
26
}
 
27
 
 
28
proc helloworld_option_proc {args} {
 
29
    puts "DEBUG: helloworld_option_proc (command line option processing) executed with arguments ${args}"
 
30
}
 
31
 
 
32
proc helloworld_option_help {args} {
 
33
    puts "DEBUG: helloworld_option_help (command line option help) executed with arguments ${args}"
 
34
}
 
35
 
 
36