Skip to content

Commit 815d23a

Browse files
committed
Disable quadruple precision for now
1 parent 0c827d9 commit 815d23a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/tests/loadtxt/test_loadtxt.f90

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ program test_loadtxt
55

66
real(sp), allocatable :: s(:, :)
77
real(dp), allocatable :: d(:, :)
8-
real(qp), allocatable :: q(:, :)
8+
!real(qp), allocatable :: q(:, :)
99

1010
call loadtxt("array1.dat", s)
1111
call print_array(s)
@@ -22,8 +22,8 @@ program test_loadtxt
2222
call loadtxt("array4.dat", d)
2323
call print_array(d)
2424

25-
call loadtxt("array4.dat", q)
26-
call print_array(q)
25+
!call loadtxt("array4.dat", q)
26+
!call print_array(q)
2727

2828
contains
2929

src/tests/loadtxt/test_savetxt.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ program test_loadtxt
1010

1111
call test_sp(outpath)
1212
call test_dp(outpath)
13-
call test_qp(outpath)
13+
!call test_qp(outpath)
1414

1515
contains
1616

0 commit comments

Comments
 (0)