mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
OSD::SetSignal() is corrected to unset FPE exceptions on Linux if called with False argument
16 lines
257 B
Plaintext
16 lines
257 B
Plaintext
# check that FPE signals can be both disabled and enabled
|
|
|
|
pload QAcommands
|
|
|
|
# start with enabled signals
|
|
dsetsignal 1
|
|
|
|
# first, disable
|
|
dsetsignal 0
|
|
OCC28829
|
|
|
|
# then, enable
|
|
puts "REQUIRED OCC28829 All: Standard_NumericError"
|
|
dsetsignal 1
|
|
catch {OCC28829}
|