We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c827d9 commit 815d23aCopy full SHA for 815d23a
src/tests/loadtxt/test_loadtxt.f90
@@ -5,7 +5,7 @@ program test_loadtxt
5
6
real(sp), allocatable :: s(:, :)
7
real(dp), allocatable :: d(:, :)
8
-real(qp), allocatable :: q(:, :)
+!real(qp), allocatable :: q(:, :)
9
10
call loadtxt("array1.dat", s)
11
call print_array(s)
@@ -22,8 +22,8 @@ program test_loadtxt
22
call loadtxt("array4.dat", d)
23
call print_array(d)
24
25
-call loadtxt("array4.dat", q)
26
-call print_array(q)
+!call loadtxt("array4.dat", q)
+!call print_array(q)
27
28
contains
29
src/tests/loadtxt/test_savetxt.f90
@@ -10,7 +10,7 @@ program test_loadtxt
call test_sp(outpath)
12
call test_dp(outpath)
13
-call test_qp(outpath)
+!call test_qp(outpath)
14
15
16
0 commit comments