Skip to content

Commit 8799b8c

Browse files
committed
deprecate testing_is_PIN2_used()
1 parent d71da88 commit 8799b8c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/sst/core/testingframework/sst_unittest_support.py

+4
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,10 @@ def testing_is_PIN_Compiled():
136136
return rtn
137137

138138
def testing_is_PIN2_used():
139+
from warnings import warn
140+
warn("testing_is_PIN2_used() is deprecated and will be removed in future versions of SST.",
141+
DeprecationWarning, stacklevel=2)
142+
139143
global pin_exec_path
140144
if testing_is_PIN_Compiled():
141145
if "/pin.sh" in pin_exec_path:

0 commit comments

Comments
 (0)