File tree 1 file changed +21
-0
lines changed
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -170,6 +170,27 @@ def test_mips64el_malta(self):
170
170
console_pattern = 'Kernel command line: %s' % kernel_command_line
171
171
self .wait_for_console_pattern (console_pattern )
172
172
173
+ def test_mips64el_fuloong2e (self ):
174
+ """
175
+ :avocado: tags=arch:mips64el
176
+ :avocado: tags=machine:fuloong2e
177
+ :avocado: tags=endian:little
178
+ """
179
+ deb_url = ('http://archive.debian.org/debian/pool/main/l/linux/'
180
+ 'linux-image-3.16.0-6-loongson-2e_3.16.56-1+deb8u1_mipsel.deb' )
181
+ deb_hash = 'd04d446045deecf7b755ef576551de0c4184dd44'
182
+ deb_path = self .fetch_asset (deb_url , asset_hash = deb_hash )
183
+ kernel_path = self .extract_from_deb (deb_path ,
184
+ '/boot/vmlinux-3.16.0-6-loongson-2e' )
185
+
186
+ self .vm .set_console ()
187
+ kernel_command_line = self .KERNEL_COMMON_COMMAND_LINE + 'console=ttyS0'
188
+ self .vm .add_args ('-kernel' , kernel_path ,
189
+ '-append' , kernel_command_line )
190
+ self .vm .launch ()
191
+ console_pattern = 'Kernel command line: %s' % kernel_command_line
192
+ self .wait_for_console_pattern (console_pattern )
193
+
173
194
def test_mips_malta_cpio (self ):
174
195
"""
175
196
:avocado: tags=arch:mips
You can’t perform that action at this time.
0 commit comments