1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
vtn 8418c61723 0023273: Avoid failures due to datadir commend when data files are not present
Fix for #23273 issue.
Fix for #23273 issue (boolean/013/R9).
Modifications of tests according to #23260 issue.
Attempt to protect against hang-ups due to waiting for standard input
change of behaviour of offset/shape_type_i/D7 case.
Attempt to protect against hang-ups during initialization of menu in batch mode.
increase cpulimit for parallel incmesh.
#23260 is fixed. count_parallel is not needed anymore.
Deleted unused code.
change of behaviour of offset/shape_type_i/D7 case.
The fix was incorrect.
Second attempt to protect against hang-ups during initialization of menu in batch mode
correction of tests in order to awoid instability.
Elapsed time changed to CPU user time is performance tests.
Processing of errors on Windows.
Stop cpulimit killer if armed by test, after the test is completed
2012-07-20 17:37:21 +04:00

90 lines
2.3 KiB
Plaintext
Executable File

#INTERFACE CAF
puts "================"
puts "OCC1228"
puts "================"
puts ""
# Basic attributes
#
# Testing attribute: TDataStd_Point
#
# Testing command: SetPoint
# Testing command: GetPoint
#
# ANALOG: puts "caf001-G3"
# Create a new document and set UndoLimit
NewDocument Doc BinOcaf
UndoLimit Doc 100
# Open a transaction
NewCommand Doc
set aTokList { :,}
# Add an attribute to a data framework
set aSetX1 10
set aSetY1 20
set aSetZ1 30
point aPoint1 ${aSetX1} ${aSetY1} ${aSetZ1}
set aDumpPoint1 [dump aPoint1]
# [llength ${aDumpPoint1}] = 10
# Format of ${aDumpPoint1}:
# *********** Dump of aPoint1 *************
# Point : 1.000000000000000e+01, 2.000000000000000e+01, 3.000000000000000e+01
set X_Point1 [lindex [split [lindex ${aDumpPoint1} 7] ${aTokList}] 0]
set Y_Point1 [lindex [split [lindex ${aDumpPoint1} 8] ${aTokList}] 0]
set Z_Point1 [lindex [split [lindex ${aDumpPoint1} 9] ${aTokList}] 0]
set aLabel 0:2
SetPoint Doc ${aLabel} aPoint1
# Close/Open the transaction
NewCommand Doc
# Save the document
set aFile ${imagedir}/OCC1228-[file tail [info script]].cbf
file delete ${aFile}
catch {SaveAs Doc ${aFile}}
if { ![file exists ${aFile}] } {
puts "There is not ${aFile} file; SaveAs command: Error"
puts "OCC1228: ERROR (case 1)"
}
#catch {exec chmod 777 ${aFile}}
# Restore the document
Close Doc
catch {Open ${aFile} DDoc}
# Get a value of the attribute
set aGetAttr3 ""
set IsDone [catch {set aGetAttr3 [GetPoint DDoc ${aLabel}]} aResult]
if { ${IsDone} != 0 } {
puts ${aResult}
puts "Get a value of TDataStd_Point attribute from restoring document: Error"
puts "OCC1228: ERROR (case 2)"
}
catch {GetPoint DDoc ${aLabel} aPoint5}
set aDumpPoint5 [dump aPoint5]
set X_Point5 [lindex [split [lindex ${aDumpPoint5} 7] ${aTokList}] 0]
set Y_Point5 [lindex [split [lindex ${aDumpPoint5} 8] ${aTokList}] 0]
set Z_Point5 [lindex [split [lindex ${aDumpPoint5} 9] ${aTokList}] 0]
if { ${X_Point1} != ${X_Point5} ||
${Y_Point1} != ${Y_Point5} ||
${Z_Point1} != ${Z_Point5} } {
puts "X_Point1=${X_Point1} X_Point5=${X_Point5}"
puts "Y_Point1=${Y_Point1} Y_Point5=${Y_Point5}"
puts "Z_Point1=${Z_Point1} Z_Point5=${Z_Point5}"
puts "Get a value of TDataStd_Point attribute from restoring document: Error"
puts "OCC1228: ERROR (case 3)"
} else {
puts "Get a value of TDataStd_Point attribute from restoring document: OK"
puts "OCC1228: OK"
}