mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Expr_NamedUnknown.cxx - wrong comparing of named unknown is fixed QABugs_20.cxx - new QAcommand is created QABugs_11.cxx - wrong command is corrected bug902 - wrong test is corrected bug31697 - new test is added
32 lines
541 B
Plaintext
Executable File
32 lines
541 B
Plaintext
Executable File
puts "======="
|
|
puts "OCC902"
|
|
puts "======="
|
|
puts ""
|
|
###############
|
|
## bad derivative
|
|
###############
|
|
|
|
pload QAcommands
|
|
|
|
set arg 5
|
|
set list [OCC902 $arg]
|
|
|
|
set we_have [lindex $list 8]
|
|
puts "we_have = $we_have"
|
|
|
|
set must_be_1 "Exp($arg*x)*$arg"
|
|
puts "must_be_1 = $must_be_1"
|
|
set must_be_2 "$arg*Exp($arg*x)"
|
|
puts "must_be_2 = $must_be_2"
|
|
|
|
if {[string compare $we_have $must_be_1] == 0} {
|
|
puts "OCC902 OK"
|
|
} else {
|
|
if { [string compare $we_have $must_be_2] == 0} {
|
|
puts "OCC902 OK"
|
|
} else {
|
|
puts "OCC902 Faulty"
|
|
}
|
|
}
|
|
|