-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2023-04-28-11_07_43.log
160 lines (159 loc) · 4.16 KB
/
2023-04-28-11_07_43.log
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
+ source /root/mugen/libs/locallibs/common_lib.sh
++ python3 --version
++ '[' 0 -eq 0 ']'
++ source /root/mugen/libs/locallibs/common_lib_python.sh
+ main
++ type -t post_test
+ '[' -n function ']'
+ trap post_test EXIT INT HUP TERM
+ rpm -qa
+ grep expect
++ type -t config_params
+ '[' -n '' ']'
++ type -t pre_test
+ '[' -n function ']'
+ pre_test
+ LOG_INFO 'Start environment preparation.'
+ message='Start environment preparation.'
+ python3 /root/mugen/libs/locallibs/mugen_log.py --level info --message 'Start environment preparation.'
Fri Apr 28 11:07:46 2023 - INFO - Start environment preparation.
+ DNF_INSTALL gcc
+ pkgs=gcc
+ node=1
+ '[' -z '' ']'
+ tmpfile=
++ python3 /root/mugen/libs/locallibs/rpm_manage.py install --pkgs gcc --node 1 --tempfile ''
Fri Apr 28 11:07:56 2023 - INFO - pkgs:(gcc) is already installed
+ tmpfile2=
+ '[' -z '' ']'
+ tmpfile=
+ mkdir /tmp/gcc_test
++ echo en_US.UTF-8
+ lang=en_US.UTF-8
+ LANG=en_US.UTF-8
+ LOG_INFO 'End of environmental preparation!'
+ message='End of environmental preparation!'
+ python3 /root/mugen/libs/locallibs/mugen_log.py --level info --message 'End of environmental preparation!'
Fri Apr 28 11:07:57 2023 - INFO - End of environmental preparation!
++ type -t run_test
+ '[' -n function ']'
+ run_test
+ cat
+ gcc -Wall main.c -o main
+ grep 'warning: ‘i’ is used uninitialized in this function' /tmp/gcc_test/log1
main.c:6:4: warning: ‘i’ is used uninitialized in this function [-Wuninitialized]
+ CHECK_RESULT 0 0 0 'Warning display failure'
+ actual_result=0
+ expect_result=0
+ mode=0
+ error_log='Warning display failure'
+ exit_mode=0
+ '[' -z 0 ']'
+ '[' 0 -eq 0 ']'
+ test 0x '!=' 0x
+ return 0
+ gcc -Wall -Werror main.c -o main
+ grep 'error: ‘i’ is used uninitialized in this function' /tmp/gcc_test/log2
main.c:6:4: error: ‘i’ is used uninitialized in this function [-Werror=uninitialized]
+ CHECK_RESULT 0 0 0 'Error display failure'
+ actual_result=0
+ expect_result=0
+ mode=0
+ error_log='Error display failure'
+ exit_mode=0
+ '[' -z 0 ']'
+ '[' 0 -eq 0 ']'
+ test 0x '!=' 0x
+ return 0
+ ./main
The Geek Stuff [0]
+ gcc -save-temps main.c
+ grep 'warning: ‘i’ is used uninitialized in this function' /tmp/gcc_test/log3
+ gcc -save-temps main.c
+ file=("a.out" "main.i" "main.o" "main.s")
+ for i in ${file[@]}
+ test -f a.out
+ CHECK_RESULT 0 0 0 'File does not exist'
+ actual_result=0
+ expect_result=0
+ mode=0
+ error_log='File does not exist'
+ exit_mode=0
+ '[' -z 0 ']'
+ '[' 0 -eq 0 ']'
+ test 0x '!=' 0x
+ return 0
+ for i in ${file[@]}
+ test -f main.i
+ CHECK_RESULT 0 0 0 'File does not exist'
+ actual_result=0
+ expect_result=0
+ mode=0
+ error_log='File does not exist'
+ exit_mode=0
+ '[' -z 0 ']'
+ '[' 0 -eq 0 ']'
+ test 0x '!=' 0x
+ return 0
+ for i in ${file[@]}
+ test -f main.o
+ CHECK_RESULT 0 0 0 'File does not exist'
+ actual_result=0
+ expect_result=0
+ mode=0
+ error_log='File does not exist'
+ exit_mode=0
+ '[' -z 0 ']'
+ '[' 0 -eq 0 ']'
+ test 0x '!=' 0x
+ return 0
+ for i in ${file[@]}
+ test -f main.s
+ CHECK_RESULT 0 0 0 'File does not exist'
+ actual_result=0
+ expect_result=0
+ mode=0
+ error_log='File does not exist'
+ exit_mode=0
+ '[' -z 0 ']'
+ '[' 0 -eq 0 ']'
+ test 0x '!=' 0x
+ return 0
+ gcc -Wall -v main.c -o main
+ grep 'gcc version' /tmp/gcc_test/log4
gcc version 10.3.1 (GCC)
+ CHECK_RESULT 0 0 0 'gcc version not found'
+ actual_result=0
+ expect_result=0
+ mode=0
+ error_log='gcc version not found'
+ exit_mode=0
+ '[' -z 0 ']'
+ '[' 0 -eq 0 ']'
+ test 0x '!=' 0x
+ return 0
+ CASE_RESULT 0
+ case_re=0
+ test -z ''
+ test 0 -eq 0
+ LOG_INFO 'succeed to execute the case.'
+ message='succeed to execute the case.'
+ python3 /root/mugen/libs/locallibs/mugen_log.py --level info --message 'succeed to execute the case.'
Fri Apr 28 11:08:03 2023 - INFO - succeed to execute the case.
+ exec_result=
+ exit 0
+ post_test
+ DNF_REMOVE
+ node=1
+ pkg_list=
+ mode=0
+ [[ -z '' ]]
+ [[ -z '' ]]
+ LOG_WARN 'no thing to do.'
+ message='no thing to do.'
+ python3 /root/mugen/libs/locallibs/mugen_log.py --level warn --message 'no thing to do.'
Fri Apr 28 11:08:04 2023 - WARN - no thing to do.
+ return 0
+ LANG=en_US.UTF-8
+ rm -rf /tmp/gcc_test
+ rm -rf a.out main main.c main.i main.o main.s