Merge pull request #1581 from martin-frbg/issue1574-2
Fix paths to LIN and EIG tests
This commit is contained in:
commit
c90bbda3df
|
@ -257,16 +257,16 @@ for dtype in range_prec:
|
||||||
else:
|
else:
|
||||||
if dtest==16:
|
if dtest==16:
|
||||||
# LIN TESTS
|
# LIN TESTS
|
||||||
cmdbase="xlintst"+letter+" < "+dtests[0][dtest]+".in > "+dtests[2][dtest]+".out"
|
cmdbase="LIN/xlintst"+letter+" < "+dtests[0][dtest]+".in > "+dtests[2][dtest]+".out"
|
||||||
elif dtest==17:
|
elif dtest==17:
|
||||||
# PROTO LIN TESTS
|
# PROTO LIN TESTS
|
||||||
cmdbase="xlintst"+letter+dtypes[0][dtype-1]+" < "+dtests[0][dtest]+".in > "+dtests[2][dtest]+".out"
|
cmdbase="LIN/xlintst"+letter+dtypes[0][dtype-1]+" < "+dtests[0][dtest]+".in > "+dtests[2][dtest]+".out"
|
||||||
elif dtest==18:
|
elif dtest==18:
|
||||||
# PROTO LIN TESTS
|
# PROTO LIN TESTS
|
||||||
cmdbase="xlintstrf"+letter+" < "+dtests[0][dtest]+".in > "+dtests[2][dtest]+".out"
|
cmdbase="LIN/xlintstrf"+letter+" < "+dtests[0][dtest]+".in > "+dtests[2][dtest]+".out"
|
||||||
else:
|
else:
|
||||||
# EIG TESTS
|
# EIG TESTS
|
||||||
cmdbase="xeigtst"+letter+" < "+dtests[0][dtest]+".in > "+dtests[2][dtest]+".out"
|
cmdbase="EIG/xeigtst"+letter+" < "+dtests[0][dtest]+".in > "+dtests[2][dtest]+".out"
|
||||||
if (not just_errors and not short_summary):
|
if (not just_errors and not short_summary):
|
||||||
print("Testing "+name+" "+dtests[1][dtest]+"-"+cmdbase, end=' ')
|
print("Testing "+name+" "+dtests[1][dtest]+"-"+cmdbase, end=' ')
|
||||||
# Run the process: either to read the file or run the LAPACK testing
|
# Run the process: either to read the file or run the LAPACK testing
|
||||||
|
|
Loading…
Reference in New Issue