summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--smoketest/data/Basic/Standard/Test_10er.xml15
1 files changed, 9 insertions, 6 deletions
diff --git a/smoketest/data/Basic/Standard/Test_10er.xml b/smoketest/data/Basic/Standard/Test_10er.xml
index 534abe00fc44..67e5e40c16d7 100644
--- a/smoketest/data/Basic/Standard/Test_10er.xml
+++ b/smoketest/data/Basic/Standard/Test_10er.xml
@@ -160,6 +160,13 @@ DIM nStrPos as Long
GlobalTestLog = OpenLogDat (sLogFileName)
call WriteTestSequence
+
+ ' Do extension test first to avoid OOM with ASAN
+ if bMakeExtensionTest then
+ gCurrentDocTest = frmExtension
+ call Test_Ext.TestExtensions
+ end if
+
if bMakeWriterTest then
gCurrentDocTest = frmWriter
call MakeDocTest
@@ -196,10 +203,6 @@ DIM nStrPos as Long
gCurrentDocTest = frmDataBase
call Test_DB.TestDB
end if
- if bMakeExtensionTest then
- gCurrentDocTest = frmExtension
- call Test_Ext.TestExtensions
- end if
Close #GlobalTestLog
GlobalTestLog = 0
@@ -208,6 +211,8 @@ end Sub
Sub WriteTestSequence
Print #GlobalTestLog, "Sequence of testing"
+ if bMakeExtensionTest then
+ WriteExtensionTests ("Extension : ", GlobalTestLog)
if bMakeWriterTest then
WriteTests ("writer : ", true, GlobalTestLog)
end if
@@ -235,8 +240,6 @@ Sub WriteTestSequence
if bMakeDBTest then
WriteDBTests ("Database : ", GlobalTestLog)
end if
- if bMakeExtensionTest then
- WriteExtensionTests ("Extension : ", GlobalTestLog)
end if
Print #GlobalTestLog, "testclosure : setup, write_status"