Subversion Repositories Open64

[/] [regression_test/] [site.exp] - Blame information for rev 1010

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 976 jianian
#!/usr/bin/expect -f
2
#################################################################
3
# Entry for the dejagnu testing framework
4
#  dejagnu will first try to load this file
5
# In this file, we try to set the configuration globally and
6
# some global variables.
7
#################################################################
8
 
9
# Configuration we are going to use
10
set conf opencc
11
#set conf gcc
12
 
13
# Today's date in YYYY-MM-DD format
14
set date [clock format [clock scan [system date]] -format "%Y-%m-%d"]
15
 
16
# Home for the test framework
17
set testhome [pwd]
18
 
19
# the dir for storing log files
20
set logdir   $testhome/log/$date
21
 
22
# the dir for storing historical data
23
set datdir   $testhome/dat
24
 
25
# the dir for storing configuration files
26
set confdir  $testhome/conf
27
 
28
# the output for the test cases
29
set testoutput $testhome/output/$date
30
 
31
# the dir for the test cases
32
set casedir $testhome/cases
33
 
34
# log file for putting compiler update/building
35
set compiler_build_log $logdir/compiler-build.log
36
set check_in_log       $logdir/checkin.log
37
 
38
set cc      {}
39
set cxx     {}
40
set fc      {}
41
set cflags    {}
42
set cxxflags          {}
43
set fflags    {}
44
set sim     {}
45
set comp_home           {}
46
set build               {}
47
set install             {}
48
set subconf             {}
49
set evaluator           "default"
50
set validation_only     0
51
set confname            {}
52
set whole_copy          0
53
set time_history        3
54 1010 hjz
set mail_sender         ""
55
set update_compiler     0
56
set platforms           "IA64, X8664, IA32"
57
set current_platform    ""
58 976 jianian
 
59
system rm -rf $logdir
60
system rm -rf $testoutput
61
 
62
system mkdir -p $logdir
63
system mkdir -p $testoutput
64