mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-26 11:05:31 +03:00
In parallel mode, limit number of jobs in the queue to avoid slowdown occurring with long queues Obsolete DRAW tools removed Improvement of processing of test log: - log is collected as list and not as string for better performance - short table of test cases (TOC) is added in HTML log - algorithm to combine test cases in one row in HTML log is improved to avoid long lines (group bugs) Parse rules corrected to ignore irrelevant debug messages, and to correctly report tests 3rdparty export as skipped or BAD when Gl2Ps is missing or is built in incompatible mode on windows Tests corrected to pass in Debug mode on Windows
45 lines
1.0 KiB
Plaintext
Executable File
45 lines
1.0 KiB
Plaintext
Executable File
puts "TODO ?OCC12345 ALL: An exception was caught"
|
|
puts "TODO ?OCC12345 ALL: \\*\\* Exception \\*\\*.*"
|
|
puts "TODO ?OCC12345 ALL: TEST INCOMPLETE"
|
|
puts "============"
|
|
puts "OCC21747"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# Implementation of gradient background style
|
|
#
|
|
# vsetgradientbg: vsetgradientbg R1 G1 B1 R2 G2 B2 Type
|
|
# R1\G1\B1 - First color [0..255]
|
|
# R2\G2\B2 - Second color [0..255]
|
|
# Type 0 to 8
|
|
# 0 = NONE,
|
|
# 1 = HORIZONTAL,
|
|
# 2 = VERTICAL,
|
|
# 3 = DIAGONAL1,
|
|
# 4 = DIAGONAL2,
|
|
# 5 = CORNER1,
|
|
# 6 = CORNER2,
|
|
# 7 = CORNER3,
|
|
# 8 = CORNER4
|
|
#######################################################################
|
|
|
|
set BugNumber OCC21747
|
|
|
|
vinit
|
|
|
|
set R1 255
|
|
set G1 0
|
|
set B1 0
|
|
set R2 0
|
|
set G2 0
|
|
set B2 255
|
|
set Type 4
|
|
|
|
puts "${BugNumber}"
|
|
puts "Type=DIAGONAL2, Color from RED to BLUE, Direction from RIGHT TOP CORNER to LEFT BOTTOM CORNER"
|
|
puts "R1=${R1} G1=${G1} B1=${B1} R2=${R2} G2=${G2} B2=${B2} Type=${Type}"
|
|
|
|
vsetgradientbg ${R1} ${G1} ${B1} ${R2} ${G2} ${B2} ${Type}
|
|
|
|
set only_screen 1
|