From 71595c29701cbc88e2f8cf21e00fcd788b94a595 Mon Sep 17 00:00:00 2001 From: Roman Lygin Date: Thu, 22 Jan 2015 16:42:58 +0300 Subject: [PATCH] 0025694: Change STEP exporter to use AP214 IS by default Test-case for issue #25694 --- src/STEPControl/STEPControl_Controller.cxx | 2 +- tests/bugs/step/bug25694 | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 tests/bugs/step/bug25694 diff --git a/src/STEPControl/STEPControl_Controller.cxx b/src/STEPControl/STEPControl_Controller.cxx index fe9f6b8700..8b03d39ef7 100644 --- a/src/STEPControl/STEPControl_Controller.cxx +++ b/src/STEPControl/STEPControl_Controller.cxx @@ -85,7 +85,7 @@ STEPControl_Controller::STEPControl_Controller () Interface_Static::Init("step","write.step.schema",'&',"eval AP214DIS"); Interface_Static::Init("step","write.step.schema",'&',"eval AP203"); Interface_Static::Init("step","write.step.schema",'&',"eval AP214IS"); - Interface_Static::SetCVal("write.step.schema","AP214CD"); + Interface_Static::SetCVal("write.step.schema","AP214IS"); // Type of Product Definition for reading // Note: the numbers should be consistent with function FindShapeReprType() diff --git a/tests/bugs/step/bug25694 b/tests/bugs/step/bug25694 new file mode 100644 index 0000000000..9cfd3ebdc7 --- /dev/null +++ b/tests/bugs/step/bug25694 @@ -0,0 +1,20 @@ +puts "========" +puts "OCC25694" +puts "========" +puts "" +################################################### +# Change STEP exporter to use AP214 IS by default +################################################### + +box b 1 2 3 +stepwrite a b + +set bug_info [data g] + +set bug_info [string trim [string range $bug_info [string first "FILE_SCHEMA" $bug_info] [expr {[string length $bug_info] - 1}]]] +set bug_info [string trim [string range $bug_info 0 [string first ";" $bug_info]]] +set bug_info [string trim [string range $bug_info [expr {[string first "'" $bug_info] + 1}] [expr {[string last "'" $bug_info] - 1}]]] + +if {$bug_info != "AUTOMOTIVE_DESIGN { 1 0 10303 214 1 1 1 1 }"} { + puts "ERROR: OCC25694 is reproduced." +}