This repository has been archived by the owner on Aug 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 78
/
runtest.exp
1903 lines (1698 loc) · 50.4 KB
/
runtest.exp
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# runtest.exp -- Test framework driver
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
# 2001, 2002, 2003, 2012 Free Software Foundation, Inc.
#
# This file is part of DejaGnu.
#
# DejaGnu is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# DejaGnu is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with DejaGnu; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
# This file was written by Rob Savoye <[email protected]>.
set frame_version 1.6
if {![info exists argv0]} {
send_error "Must use a version of Expect greater than 5.0\n"
exit 1
}
# trap some signals so we know whats happening. These definitions are only
# temporary until we read in the library stuff
#
trap { send_user "\ninterrupted by user\n"; exit 130 } SIGINT
trap { send_user "\nquit\n"; exit 131 } SIGQUIT
trap { send_user "\nterminated\n"; exit 143 } SIGTERM
#
# Initialize a few global variables used by all tests.
# `reset_vars' resets several of these, we define them here to document their
# existence. In fact, it would be nice if all globals used by some interface
# of dejagnu proper were documented here.
#
# Keep these all lowercase. Interface variables used by the various
# testsuites (eg: the gcc testsuite) should be in all capitals
# (eg: TORTURE_OPTIONS).
#
set mail_logs 0 ;# flag for mailing of summary and diff logs
set psum_file "latest" ;# file name of previous summary to diff against
set exit_status 0 ;# exit code returned by this program
set xfail_flag 0 ;# indicates that a failure is expected
set xfail_prms 0 ;# GNATS prms id number for this expected failure
set kfail_flag 0 ;# indicates that it is a known failure
set kfail_prms 0 ;# bug id for the description of the known failure
set sum_file "" ;# name of the file that contains the summary log
set base_dir "" ;# the current working directory
set xml_file_name "" ;# name of the xml output if requested
set xml_file "" ;# handle on the xml file if requested
set xml 0 ;# flag for requesting xml
set logname "" ;# the users login name
set prms_id 0 ;# GNATS prms id number
set bug_id 0 ;# optional bug id number
set dir "" ;# temp variable for directory names
set srcdir "." ;# source directory containing the test suite
set ignoretests "" ;# list of tests to not execute
set objdir "." ;# directory where test case binaries live
set reboot 0
set configfile site.exp ;# (local to this file)
set multipass "" ;# list of passes and var settings
set errno ""; ;#
set exit_error 1 ;# Toggle for whether to set the exit status
;# on Tcl bugs in test case drivers.
#
# These describe the host and target environments.
#
set build_triplet "" ;# type of architecture to run tests on
set build_os "" ;# type of os the tests are running on
set build_vendor "" ;# vendor name of the OS or workstation the test are running on
set build_cpu "" ;# type of the cpu tests are running on
set host_triplet "" ;# type of architecture to run tests on, sometimes remotely
set host_os "" ;# type of os the tests are running on
set host_vendor "" ;# vendor name of the OS or workstation the test are running on
set host_cpu "" ;# type of the cpu tests are running on
set target_triplet "" ;# type of architecture to run tests on, final remote
set target_os "" ;# type of os the tests are running on
set target_vendor "" ;# vendor name of the OS or workstation the test are running on
set target_cpu "" ;# type of the cpu tests are running on
set target_alias "" ;# standard abbreviation of target
set compiler_flags "" ;# the flags used by the compiler
#
# some convenience abbreviations
#
if {![info exists hex]} {
set hex "0x\[0-9A-Fa-f\]+"
}
if {![info exists decimal]} {
set decimal "\[0-9\]+"
}
#
# set the base dir (current working directory)
#
set base_dir [pwd]
#
# These are tested in case they are not initialized in $configfile. They are
# tested here instead of the init module so they can be overridden by command
# line options.
#
if {![info exists all_flag]} {
set all_flag 0
}
if {![info exists binpath]} {
set binpath ""
}
if {![info exists debug]} {
set debug 0
}
if {![info exists options]} {
set options ""
}
if {![info exists outdir]} {
set outdir "."
}
if {![info exists reboot]} {
set reboot 1
}
if {![info exists tracelevel]} {
set tracelevel 0
}
if {![info exists verbose]} {
set verbose 0
}
if {![info exists log_dialog]} {
set log_dialog 0
}
#
# verbose [-n] [-log] [--] message [level]
#
# Print MESSAGE if the verbose level is >= LEVEL.
# The default value of LEVEL is 1.
# "-n" says to not print a trailing newline.
# "-log" says to add the text to the log file even if it won't be printed.
# Note that the apparent behaviour of `send_user' dictates that if the message
# is printed it is also added to the log file.
# Use "--" if MESSAGE begins with "-".
#
# This is defined here rather than in framework.exp so we can use it
# while still loading in the support files.
#
proc verbose { args } {
global verbose
set newline 1
set logfile 0
set i 0
if { [string index [lindex $args 0] 0] == "-" } {
for { set i 0 } { $i < [llength $args] } { incr i } {
if { [lindex $args $i] == "--" } {
incr i
break
} elseif { [lindex $args $i] == "-n" } {
set newline 0
} elseif { [lindex $args $i] == "-log" } {
set logfile 1
} elseif { [lindex $args $i] == "-x" } {
set xml 1
} elseif { [string index [lindex $args $i] 0] == "-" } {
clone_output "ERROR: verbose: illegal argument: [lindex $args $i]"
return
} else {
break
}
}
if { [llength $args] == $i } {
clone_output "ERROR: verbose: nothing to print"
return
}
}
set level 1
if { [llength $args] > $i + 1 } {
set level [lindex $args [expr { $i + 1 }]]
}
set message [lindex $args $i]
if { $verbose >= $level } {
# We assume send_user also sends the text to the log file (which
# appears to be the case though the docs aren't clear on this).
if { $newline } {
send_user -- "$message\n"
} else {
send_user -- "$message"
}
} elseif { $logfile } {
if { $newline } {
send_log -- "$message\n"
} else {
send_log -- "$message"
}
}
}
#
# Transform a tool name to get the installed name.
# target_triplet is the canonical target name. target_alias is the
# target name used when configure was run.
#
proc transform { name } {
global target_triplet
global target_alias
global host_triplet
global board
if {[string match $target_triplet $host_triplet]} {
return $name
}
if {[string match "native" $target_triplet]} {
return $name
}
if {[board_info host exists no_transform_name]} {
return $name
}
if {[string match "" $target_triplet]} {
return $name
} else {
if {[info exists board]} {
if {[board_info $board exists target_install]} {
set target_install [board_info $board target_install]
}
}
if {[target_info exists target_install]} {
set target_install [target_info target_install]
}
if {[info exists target_alias]} {
set tmp ${target_alias}-${name}
} elseif {[info exists target_install]} {
if { [lsearch -exact $target_install $target_alias] >= 0 } {
set tmp ${target_alias}-${name}
} else {
set tmp "[lindex $target_install 0]-${name}"
}
}
verbose "Transforming $name to $tmp"
return $tmp
}
}
#
# findfile arg0 [arg1] [arg2]
#
# Find a file and see if it exists. If you only care about the false
# condition, then you'll need to pass a null "" for arg1.
# arg0 is the filename to look for. If the only arg,
# then that's what gets returned. If this is the
# only arg, then if it exists, arg0 gets returned.
# if it doesn't exist, return only the prog name.
# arg1 is optional, and it's what gets returned if
# the file exists.
# arg2 is optional, and it's what gets returned if
# the file doesn't exist.
#
proc findfile { args } {
# look for the file
verbose "Seeing if [lindex $args 0] exists." 2
if {[file exists [lindex $args 0]]} {
if { [llength $args] > 1 } {
verbose "Found file, returning [lindex $args 1]"
return [lindex $args 1]
} else {
verbose "Found file, returning [lindex $args 0]"
return [lindex $args 0]
}
} else {
if { [llength $args] > 2 } {
verbose "Didn't find file [lindex $args 0], returning [lindex $args 2]"
return [lindex $args 2]
} else {
verbose "Didn't find file, returning [file tail [lindex $args 0]]"
return [transform [file tail [lindex $args 0]]]
}
}
}
#
# load_file [-1] [--] file1 [ file2 ... ]
#
# Utility to source a file. All are sourced in order unless the flag "-1"
# is given in which case we stop after finding the first one.
# The result is 1 if a file was found, 0 if not.
# If a tcl error occurs while sourcing a file, we print an error message
# and exit.
#
proc load_file { args } {
set i 0
set only_one 0
if { [lindex $args $i] == "-1" } {
set only_one 1
incr i
}
if { [lindex $args $i] == "--" } {
incr i
}
set found 0
foreach file [lrange $args $i end] {
verbose "Looking for $file" 2
# In Tcl, "file exists" fails if the filename looks like
# ~/FILE and the environment variable HOME does not exist.
if {! [catch {file exists $file} result] && $result} {
set found 1
verbose "Found $file"
if { [catch "uplevel #0 source $file"] == 1 } {
send_error "ERROR: tcl error sourcing $file.\n"
global errorInfo
if {[info exists errorInfo]} {
send_error "$errorInfo\n"
}
exit 1
}
if { $only_one } {
break
}
}
}
return $found
}
#
# search_and_load_file -- search DIRLIST looking for FILELIST.
# TYPE is used when displaying error and progress messages.
#
proc search_and_load_file { type filelist dirlist } {
set found 0
foreach dir $dirlist {
foreach initfile $filelist {
verbose "Looking for $type ${dir}/${initfile}" 2
if {[file exists [file join ${dir} ${initfile}]]} {
set found 1
set error ""
if { ${type} != "library file" } {
send_user "Using ${dir}/${initfile} as ${type}.\n"
} else {
verbose "Loading ${dir}/${initfile}"
}
if {[catch "uplevel #0 source ${dir}/${initfile}" error] == 1} {
global errorInfo
send_error "ERROR: tcl error sourcing ${type} ${dir}/${initfile}.\n${error}\n"
if {[info exists errorInfo]} {
send_error "$errorInfo\n"
}
exit 1
}
break
}
}
if { $found } {
break
}
}
return $found
}
#
# Give a usage statement.
#
proc usage { } {
global tool
send_user "USAGE: runtest \[options...\]\n"
send_user "\t--all, -a\t\tPrint all test output to screen\n"
send_user "\t--build \[triplet\]\tThe canonical triplet of the build machine\n"
send_user "\t--debug\t\t\tSet expect debugging ON\n"
send_user "\t--directory name\tRun only the tests in directory 'name'\n"
send_user "\t--help\t\t\tPrint help text\n"
send_user "\t--host \[triplet\]\tThe canonical triplet of the host machine\n"
send_user "\t--host_board \[name\]\tThe host board to use\n"
send_user "\t--ignore \[name(s)\]\tThe names of specific tests to ignore\n"
send_user "\t--log_dialog\t\t\Emit Expect output on stdout\n"
send_user "\t--mail \[name(s)\]\tWhom to mail the results to\n"
send_user "\t--objdir \[name\]\t\tThe test suite binary directory\n"
send_user "\t--outdir \[name\]\t\tThe directory to put logs in\n"
send_user "\t--reboot \[name\]\t\tReboot the target (if supported)\n"
send_user "\t--srcdir \[name\]\t\tThe test suite source code directory\n"
send_user "\t--status\t\tSet the exit status to fail on Tcl errors\n"
send_user "\t--strace \[number\]\tSet expect tracing ON\n"
send_user "\t--target \[triplet\]\tThe canonical triplet of the target board\n"
send_user "\t--target_board \[name(s)\] The list of target boards to run tests on\n"
send_user "\t--tool \[name(s)\]\tRun tests on these tools\n"
send_user "\t--tool_exec \[name\]\tThe path to the tool executable to test\n"
send_user "\t--tool_opts \[options\]\tA list of additional options to pass to the tool\n"
send_user "\t--verbose, -v\t\tProduce verbose output\n"
send_user "\t--version, -V\t\tPrint all relevant version numbers\n"
send_user "\t--xml\[=name\], -x\tTurn on XML output generation\n"
send_user "\t--D\[0-1\]\t\tTcl debugger\n"
send_user "\tscript.exp\[=arg(s)\]\tRun these tests only\n"
if { [info exists tool] } {
if { [info procs ${tool}_option_help] != "" } {
${tool}_option_help
}
}
}
#
# Parse the arguments the first time looking for these. We will ultimately
# parse them twice. Things are complicated because:
# - we want to parse --verbose early on
# - we don't want config files to override command line arguments
# (eg: $base_dir/$configfile vs --host/--target)
# - we need some command line arguments before we can process some config files
# (eg: --objdir before $objdir/$configfile, --host/--target before $DEJAGNU)
# The use of `arg_host_triplet' and `arg_target_triplet' lets us avoid parsing
# the arguments three times.
#
set arg_host_triplet ""
set arg_target_triplet ""
set arg_build_triplet ""
set argc [ llength $argv ]
for { set i 0 } { $i < $argc } { incr i } {
set option [lindex $argv $i]
# make all options have two hyphens
switch -glob -- $option {
"--*" {
}
"-*" {
set option "-$option"
}
}
# split out the argument for options that take them
switch -glob -- $option {
"--*=*" {
regexp {^[^=]*=(.*)$} $option nil optarg
}
"--bu*" -
"--ho*" -
"--ig*" -
"--m*" -
"--n*" -
"--ob*" -
"--ou*" -
"--sr*" -
"--str*" -
"--ta*" -
"--di*" -
"--to*" {
incr i
set optarg [lindex $argv $i]
}
}
switch -glob -- $option {
"--bu*" { # (--build) the build host configuration
set arg_build_triplet $optarg
continue
}
"--host_bo*" {
set host_board $optarg
continue
}
"--ho*" { # (--host) the host configuration
set arg_host_triplet $optarg
continue
}
"--ob*" { # (--objdir) where the test case object code lives
set objdir $optarg
continue
}
"--sr*" { # (--srcdir) where the testsuite source code lives
set srcdir $optarg
continue
}
"--target_bo*" {
set target_list $optarg
continue
}
"--ta*" { # (--target) the target configuration
set arg_target_triplet $optarg
continue
}
"--tool_opt*" {
set TOOL_OPTIONS $optarg
continue
}
"--tool_exec*" {
set TOOL_EXECUTABLE $optarg
continue
}
"--to*" { # (--tool) specify tool name
set tool $optarg
set comm_line_tool $optarg
continue
}
"--di*" {
set cmdline_dir_to_run $optarg
continue
}
"--v" -
"--verb*" { # (--verbose) verbose output
incr verbose
continue
}
"[A-Z0-9_-.]*=*" { # process makefile style args like CC=gcc, etc...
if {[regexp "^(\[A-Z0-9_-\]+)=(.*)$" $option junk var val]} {
set $var $val
verbose "$var is now $val"
append makevars "set $var $val;" ;# FIXME: Used anywhere?
unset junk var val
} else {
send_error "Illegal variable specification:\n"
send_error "$option\n"
}
continue
}
}
}
verbose "Verbose level is $verbose"
#
# get the users login name
#
if {[string match "" $logname]} {
if {[info exists env(USER)]} {
set logname $env(USER)
} else {
if {[info exists env(LOGNAME)]} {
set logname $env(LOGNAME)
} else {
# try getting it with whoami
catch "set logname [exec whoami]" tmp
if {[string match "*couldn't find*to execute*" $tmp]} {
# try getting it with who am i
unset tmp
catch "set logname [exec who am i]" tmp
if {[string match "*Command not found*" $tmp]} {
send_user "ERROR: couldn't get the users login name\n"
set logname "Unknown"
} else {
set logname [lindex [split $logname " !"] 1]
}
}
}
}
}
#
# lookfor_file -- try to find a file by searching up multiple directory levels
#
proc lookfor_file { dir name } {
foreach x ". .. ../.. ../../.. ../../../.." {
verbose "$dir/$x/$name" 2
if {[file exists [file join $dir $name]]} {
return [file join $dir $name]
}
set dir [remote_file build dirname $dir]
}
return ""
}
#
# load_lib -- load a library by sourcing it
#
# If there a multiple files with the same name, stop after the first one found.
# The order is first look in the install dir, then in a parallel dir in the
# source tree (up one or two levels), then in the current dir.
#
proc load_lib { file } {
global verbose libdir libdirs srcdir base_dir execpath tool
global loaded_libs
if {[info exists loaded_libs($file)]} {
return
}
set loaded_libs($file) ""
set search_dirs [list ../lib $libdir $libdir/lib [file dirname [file dirname $srcdir]]/dejagnu/lib $srcdir/lib $execpath/lib . [file dirname [file dirname [file dirname $srcdir]]]/dejagnu/lib]
if {[info exists libdirs]} {
lappend search_dirs $libdirs
}
if { [search_and_load_file "library file" $file $search_dirs ] == 0 } {
send_error "ERROR: Couldn't find library file $file.\n"
exit 1
}
}
verbose "Login name is $logname"
#
# Begin sourcing the config files.
# All are sourced in order.
#
# Search order:
# $base_dir/$configfile -> $objdir/$configfile ->
# installed -> $DEJAGNU -> $HOME/.dejagnurc
#
# For the normal case, we rely on $base_dir/$configfile to set
# host_triplet and target_triplet.
#
load_file $base_dir/$configfile
#
# If objdir didn't get set in $base_dir/$configfile, set it to $base_dir.
# Make sure we source $objdir/$configfile in case $base_dir/$configfile doesn't
# exist and objdir was given on the command line.
#
if {[expr {[string match "." $objdir] || [string match $srcdir $objdir]}]} {
set objdir $base_dir
} else {
load_file $objdir/$configfile
}
# Well, this just demonstrates the real problem...
if {![info exists tool_root_dir]} {
set tool_root_dir [file dirname $objdir]
if {[file exists [file join $tool_root_dir testsuite]]} {
set tool_root_dir [file dirname $tool_root_dir]
}
}
verbose "Using test sources in $srcdir"
verbose "Using test binaries in $objdir"
verbose "Tool root directory is $tool_root_dir"
set execpath [file dirname $argv0]
set libdir [file dirname $execpath]/dejagnu
if {[info exists env(DEJAGNULIBS)]} {
set libdir $env(DEJAGNULIBS)
}
# list of extra search directories used by load_lib to look for libs
set libdirs {}
verbose "Using $libdir to find libraries"
#
# If the host or target was given on the command line, override the above
# config files. We allow $DEJAGNU to massage them though in case it would
# ever want to do such a thing.
#
if { $arg_host_triplet != "" } {
set host_triplet $arg_host_triplet
}
if { $arg_build_triplet != "" } {
set build_triplet $arg_build_triplet
}
# If we only specify --host, then that must be the build machine too,
# and we're stuck using the old functionality of a simple cross test.
if {[expr { $build_triplet == "" && $host_triplet != "" } ]} {
set build_triplet $host_triplet
}
# If we only specify --build, then we'll use that as the host too.
if {[expr { $build_triplet != "" && $host_triplet == "" } ]} {
set host_triplet $build_triplet
}
unset arg_host_triplet arg_build_triplet
#
# If the build machine type hasn't been specified by now, use config.guess.
#
if {[expr {$build_triplet == "" && $host_triplet == ""}]} {
# find config.guess
foreach dir "$libdir $libdir/libexec $libdir/.. $execpath $srcdir $srcdir/.. $srcdir/../.." {
verbose "Looking for ${dir}/config.guess" 2
if {[file exists [file join ${dir} config.guess]]} {
set config_guess [file join ${dir} config.guess]
verbose "Found [file join ${dir} config.guess]"
break
}
}
# get the canonical triplet
if {![info exists config_guess]} {
send_error "ERROR: Couldn't find config.guess program.\n"
exit 1
}
catch "exec $config_guess" build_triplet
switch -- $build_triplet {
"No uname command or uname output not recognized" -
"Unable to guess system type" {
verbose "WARNING: Uname output not recognized"
set build_triplet unknown
}
}
verbose "Assuming build host is $build_triplet"
if { $host_triplet == "" } {
set host_triplet $build_triplet
}
}
#
# Figure out the target. If the target hasn't been specified, then we have to
# assume we are native.
#
if { $arg_target_triplet != "" } {
set target_triplet $arg_target_triplet
} elseif { $target_triplet == "" } {
set target_triplet $build_triplet
verbose "Assuming native target is $target_triplet" 2
}
unset arg_target_triplet
#
# Default target_alias to target_triplet.
#
if {![info exists target_alias]} {
set target_alias $target_triplet
}
proc get_local_hostname { } {
if {[catch "info hostname" hb]} {
set hb ""
} else {
regsub "\\..*$" $hb "" hb
}
verbose "hostname=$hb" 3
return $hb
}
#
# We put these here so that they can be overridden later by site.exp or
# friends.
#
# Set up the target as machine NAME. We also load base-config.exp as a
# default configuration. The config files are sourced with the global
# variable $board set to the name of the current target being defined.
#
proc setup_target_hook { whole_name name } {
global board
global host_board
if {[info exists host_board]} {
set hb $host_board
} else {
set hb [get_local_hostname]
}
set board $whole_name
global board_type
set board_type "target"
load_config base-config.exp
if {![load_board_description ${name} ${whole_name} ${hb}]} {
if { $name != "unix" } {
perror "couldn't load description file for ${name}"
exit 1
} else {
load_generic_config "unix"
}
}
if {[board_info $board exists generic_name]} {
load_tool_target_config [board_info $board generic_name]
}
unset board
unset board_type
push_target $whole_name
if { [info procs ${whole_name}_init] != "" } {
${whole_name}_init $whole_name
}
if { ![isnative] && ![is_remote target] } {
global env build_triplet target_triplet
if { (![info exists env(DEJAGNU)]) && ($build_triplet != $target_triplet) } {
warning "Assuming target board is the local machine (which is probably wrong).\nYou may need to set your DEJAGNU environment variable."
}
}
}
#
# Clean things up afterwards.
#
proc cleanup_target_hook { name } {
global tool
# Clean up the target board.
if { [info procs "${name}_exit"] != "" } {
${name}_exit
}
# We also call the tool exit routine here.
if {[info exists tool]} {
if { [info procs "${tool}_exit"] != "" } {
${tool}_exit
}
}
remote_close target
pop_target
}
proc setup_host_hook { name } {
global board
global board_info
global board_type
set board $name
set board_type "host"
load_board_description $name
unset board
unset board_type
push_host $name
if { [info procs ${name}_init] != "" } {
${name}_init $name
}
}
proc setup_build_hook { name } {
global board
global board_info
global board_type
set board $name
set board_type "build"
load_board_description $name
unset board
unset board_type
push_build $name
if { [info procs ${name}_init] != "" } {
${name}_init $name
}
}
#
# Find and load the global config file if it exists.
# The global config file is used to set the connect mode and other
# parameters specific to each particular target.
# These files assume the host and target have been set.
#
if { [load_file -- $libdir/$configfile] == 0 } {
# If $DEJAGNU isn't set either then there isn't any global config file.
# Warn the user as there really should be one.
if { ! [info exists env(DEJAGNU)] } {
send_error "WARNING: Couldn't find the global config file.\n"
}
}
if {[info exists env(DEJAGNU)]} {
if { [load_file -- $env(DEJAGNU)] == 0 } {
# It may seem odd to only issue a warning if there isn't a global
# config file, but issue an error if $DEJAGNU is erroneously defined.
# Since $DEJAGNU is set there is *supposed* to be a global config file,
# so the current behaviour seems reasonable.
send_error "WARNING: global config file $env(DEJAGNU) not found.\n"
}
if {![info exists boards_dir]} {
set boards_dir "[file dirname $env(DEJAGNU)]/boards"
}
}
# Load user .dejagnurc file last as the ultimate override.
load_file ~/.dejagnurc
if {![info exists boards_dir]} {
set boards_dir ""
}
#
# parse out the config parts of the triplet name
#
# build values
if { $build_cpu == "" } {
regsub -- "-.*-.*" ${build_triplet} "" build_cpu
}
if { $build_vendor == "" } {
regsub -- "^\[a-z0-9\]*-" ${build_triplet} "" build_vendor
regsub -- "-.*" ${build_vendor} "" build_vendor
}
if { $build_os == "" } {
regsub -- ".*-.*-" ${build_triplet} "" build_os
}
# host values
if { $host_cpu == "" } {
regsub -- "-.*-.*" ${host_triplet} "" host_cpu
}
if { $host_vendor == "" } {
regsub -- "^\[a-z0-9\]*-" ${host_triplet} "" host_vendor
regsub -- "-.*" ${host_vendor} "" host_vendor
}
if { $host_os == "" } {
regsub -- ".*-.*-" ${host_triplet} "" host_os
}
# target values
if { $target_cpu == "" } {
regsub -- "-.*-.*" ${target_triplet} "" target_cpu
}
if { $target_vendor == "" } {
regsub -- "^\[a-z0-9\]*-" ${target_triplet} "" target_vendor
regsub -- "-.*" ${target_vendor} "" target_vendor
}
if { $target_os == "" } {
regsub -- ".*-.*-" ${target_triplet} "" target_os
}
#
# Load the primary tool initialization file.
#
proc load_tool_init { file } {
global srcdir
global loaded_libs
if {[info exists loaded_libs($file)]} {
return
}
set loaded_libs($file) ""
if {[file exists [file join ${srcdir} lib $file]]} {
verbose "Loading library file ${srcdir}/lib/$file"
if { [catch "uplevel #0 source ${srcdir}/lib/$file"] == 1 } {
send_error "ERROR: tcl error sourcing library file ${srcdir}/lib/$file.\n"
global errorInfo
if {[info exists errorInfo]} {
send_error "$errorInfo\n"
}
exit 1
}
} else {
warning "Couldn't find tool init file"
}
}
#
# load the testing framework libraries
#
load_lib utils.exp
load_lib framework.exp
load_lib debugger.exp
load_lib remote.exp
load_lib target.exp
load_lib targetdb.exp
load_lib libgloss.exp
# Initialize the test counters and reset them to 0.
init_testcounts
reset_vars
#
# Parse the command line arguments.
#
# Load the tool initialization file. Allow the --tool option to override
# what's set in the site.exp file.
if {[info exists comm_line_tool]} {
set tool $comm_line_tool
}
if {[info exists tool]} {
load_tool_init ${tool}.exp
}
set argc [ llength $argv ]
for { set i 0 } { $i < $argc } { incr i } {
set option [ lindex $argv $i ]
# make all options have two hyphens
switch -glob -- $option {
"--*" {
}
"-*" {
set option "-$option"
}
}
# split out the argument for options that take them
switch -glob -- $option {
"--*=*" {
regexp {^[^=]*=(.*)$} $option nil optarg
}
"--bu*" -
"--ho*" -
"--ig*" -
"--m*" -