Skip to content

Commit 89f2fa4

Browse files
committed
test flipped dimensions e.g. [2,1]
1 parent a2dd310 commit 89f2fa4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/linalg/test_linalg_mnorm.fypp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,9 @@ module test_linalg_mnorm
8989
do k = 1, size(orders)
9090
order = trim(orders(k))
9191
do dim1 = 1, ndim
92-
do dim2 = dim1+1, ndim
92+
do dim2 = 1, ndim
93+
94+
if (dim1==dim2) cycle
9395

9496
dim = [dim1,dim2]
9597
dim_sizes = [size(b,dim1,kind=ilp),size(b,dim2,kind=ilp)]

0 commit comments

Comments
 (0)