Skip to content

Commit a862def

Browse files
committed
Add missing imports, fix scope in CMake check
1 parent b718f78 commit a862def

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

config/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if (NOT DEFINED WITH_QP)
2121
"if (selected_real_kind(33) == -1) stop 1; end"
2222
WITH_QP
2323
)
24+
set(WITH_QP ${WITH_QP} PARENT_SCOPE)
2425
endif()
2526
if (NOT DEFINED WITH_XDP)
26-
set(WITH_QP ${WITH_QP} PARENT_SCOPE)
2727
check_fortran_source_runs(
2828
"if (any(selected_real_kind(18) == [-1, selected_real_kind(33)])) stop 1; end"
2929
WITH_XDP

src/tests/io/test_loadtxt_qp.fypp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module test_loadtxt_qp
44
use stdlib_kinds, only: qp
55
use stdlib_io, only: loadtxt, savetxt
6-
use testdrive, only: new_unittest, unittest_type, error_type, check
6+
use testdrive, only: new_unittest, unittest_type, error_type, check, skip_test
77
implicit none
88

99
private

src/tests/io/test_savetxt_qp.fypp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module test_savetxt_qp
44
use stdlib_kinds, only: qp
55
use stdlib_io, only: loadtxt, savetxt
6-
use testdrive, only: new_unittest, unittest_type, error_type, check
6+
use testdrive, only: new_unittest, unittest_type, error_type, check, skip_test
77
implicit none
88

99
private

src/tests/linalg/test_linalg.fypp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#:include "common.fypp"
22

33
module test_linalg
4-
use testdrive, only : new_unittest, unittest_type, error_type, check
4+
use testdrive, only : new_unittest, unittest_type, error_type, check, skip_test
55
use stdlib_kinds, only: sp, dp, xdp, qp, int8, int16, int32, int64
66
use stdlib_linalg, only: diag, eye, trace, outer_product
77

src/tests/math/test_stdlib_math.fypp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
! SPDX-Identifier: MIT
22

33
module test_stdlib_math
4-
use testdrive, only : new_unittest, unittest_type, error_type, check
4+
use testdrive, only : new_unittest, unittest_type, error_type, check, skip_test
55
use stdlib_math, only: clip
66
use stdlib_kinds, only: int8, int16, int32, int64, sp, dp, xdp, qp
77
implicit none

src/tests/optval/test_optval.fypp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module test_optval
44
use, intrinsic :: iso_fortran_env, only: &
55
sp => real32, dp => real64, qp => real128, &
66
int8, int16, int32, int64
7-
use testdrive, only : new_unittest, unittest_type, error_type, check
7+
use testdrive, only : new_unittest, unittest_type, error_type, check, skip_test
88
use stdlib_optval, only: optval
99

1010
implicit none

src/tests/quadrature/test_trapz.fypp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
module test_trapz
44
use stdlib_kinds, only: sp, dp, xdp, qp
5-
use testdrive, only : new_unittest, unittest_type, error_type, check
5+
use testdrive, only : new_unittest, unittest_type, error_type, check, skip_test
66
use stdlib_quadrature, only: trapz, trapz_weights
77

88
implicit none

0 commit comments

Comments
 (0)