RegressionTests__VMSpawningTestCase.st
branchjv
changeset 1602 f73a5609a5fc
parent 1571 fe6e15b9156f
child 1613 713eead17134
equal deleted inserted replaced
1601:3952a8200e70 1602:f73a5609a5fc
   152       * is anything else then signal test error by means of #error:"
   152       * is anything else then signal test error by means of #error:"
   153     
   153     
   154     | exe  args  environment  outputFile  output  pid  blocker  status |
   154     | exe  args  environment  outputFile  output  pid  blocker  status |
   155 
   155 
   156     exe := OperatingSystem pathOfSTXExecutable.
   156     exe := OperatingSystem pathOfSTXExecutable.
   157     args := { exe } , argv.
   157     args := { exe } , #('--abortOnSEGV') , argv.
   158     OperatingSystem isMSWINDOWSlike ifTrue:[
   158     OperatingSystem isMSWINDOWSlike ifTrue:[
   159         args := String 
   159         args := String 
   160                 streamContents:[:s | 
   160                 streamContents:[:s | 
   161                     args 
   161                     args 
   162                         do:[:each | 
   162                         do:[:each | 
   246             ].
   246             ].
   247         ].
   247         ].
   248     ].
   248     ].
   249 
   249 
   250     "Created: / 06-01-2017 / 11:25:04 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   250     "Created: / 06-01-2017 / 11:25:04 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   251     "Modified: / 06-01-2017 / 23:36:55 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   251     "Modified: / 26-03-2017 / 07:11:05 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   252 ! !
   252 ! !
   253 
   253 
   254 !VMSpawningTestCase class methodsFor:'documentation'!
   254 !VMSpawningTestCase class methodsFor:'documentation'!
   255 
   255 
   256 version_HG
   256 version_HG