Skip to content
This repository was archived by the owner on Dec 22, 2021. It is now read-only.

Commit f9e30c5

Browse files
authored
Merge pull request #166 from Honry/rename-file
[test] Rename test files of integer min/max ops
2 parents f327917 + b6903b8 commit f9e30c5

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

test/core/simd/meta/gen_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
'simd_bitwise',
2626
'simd_f32x4',
2727
'simd_f64x2',
28-
'simd_lanewise_integer',
28+
'simd_int_arith2',
2929
)
3030

3131

test/core/simd/meta/simd_lanewise_integer.py renamed to test/core/simd/meta/simd_int_arith2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ def get_all_cases(self):
368368

369369
def gen_test_cases(self):
370370
"""generate case file"""
371-
wast_filename = '../simd_{lane_type}.wast'.format(lane_type=self.LANE_TYPE)
371+
wast_filename = '../simd_{lane_type}_arith2.wast'.format(lane_type=self.LANE_TYPE)
372372
with open(wast_filename, 'w') as fp:
373373
fp.write(self.get_all_cases())
374374

test/core/simd/simd_i16x8.wast renamed to test/core/simd/simd_i16x8_arith2.wast

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,4 +392,4 @@
392392
(assert_return (invoke "i16x8.max_u-i16x8.min_s" (v128.const i16x8 0 0 0 0 0 0 0 0)
393393
(v128.const i16x8 1 1 1 1 1 1 1 1)
394394
(v128.const i16x8 2 2 2 2 2 2 2 2))
395-
(v128.const i16x8 2 2 2 2 2 2 2 2))
395+
(v128.const i16x8 2 2 2 2 2 2 2 2))

test/core/simd/simd_i32x4.wast renamed to test/core/simd/simd_i32x4_arith2.wast

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,4 +402,4 @@
402402
(assert_return (invoke "i32x4.max_u-i32x4.min_s" (v128.const i32x4 0 0 0 0)
403403
(v128.const i32x4 1 1 1 1)
404404
(v128.const i32x4 2 2 2 2))
405-
(v128.const i32x4 2 2 2 2))
405+
(v128.const i32x4 2 2 2 2))

test/core/simd/simd_i8x16.wast renamed to test/core/simd/simd_i8x16_arith2.wast

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,4 +392,4 @@
392392
(assert_return (invoke "i8x16.max_u-i8x16.min_s" (v128.const i8x16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)
393393
(v128.const i8x16 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1)
394394
(v128.const i8x16 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2))
395-
(v128.const i8x16 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2))
395+
(v128.const i8x16 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2))

0 commit comments

Comments
 (0)