RegressionTests__SnapshotRestartTests.st
branchjv
changeset 1541 5c6a32e00528
parent 1500 d406a10b2965
child 1543 6d2bdaf0c9ec
--- a/RegressionTests__SnapshotRestartTests.st	Wed Oct 26 22:45:14 2016 +0100
+++ b/RegressionTests__SnapshotRestartTests.st	Sat Nov 05 22:22:48 2016 +0000
@@ -60,10 +60,10 @@
     | cmd |
 
     OperatingSystem isMSWINDOWSlike ifTrue:[ 
-        OperatingSystem getCCDefine = '__BORLANDC__' ifTrue:[ 
+        STCCompilerInterface getCCDefine = '__BORLANDC__' ifTrue:[ 
             cmd := 'bmake.bat ' , target.
         ].
-        OperatingSystem getCCDefine = '__MINGW32__' ifTrue:[ 
+        STCCompilerInterface getCCDefine = '__MINGW32__' ifTrue:[ 
             (OperatingSystem getEnvironment: 'MINGW_DIR') isNil ifTrue:[ 
                 self assert: 'C:\MINGW' asFilename exists description: 'MINGW_DIR environment variable not set and C:\MINGW does not exist'.
                 OperatingSystem setEnvironment: 'MINGW_DIR'     to: 'C:\MINGW'.
@@ -73,7 +73,7 @@
             OperatingSystem setEnvironment: 'PATH'          to: (OperatingSystem getEnvironment: 'PATH') , ';C:\MINGW\bin'.
             cmd := 'mingwmake.bat ' , target.
         ].
-        OperatingSystem getCCDefine = '__MINGW64__' ifTrue:[ 
+        STCCompilerInterface getCCDefine = '__MINGW64__' ifTrue:[ 
             (OperatingSystem getEnvironment: 'MINGW_DIR') isNil ifTrue:[ 
                 self assert: 'C:\MINGW64' asFilename exists description: 'MINGW_DIR environment variable not set and C:\MINGW does not exist'.
                 OperatingSystem setEnvironment: 'MINGW_DIR'     to: 'C:\MINGW64'.
@@ -87,11 +87,11 @@
         cmd := 'make -f Makefile.init ', target
     ].
     self
-	assert: (OperatingSystem executeCommand: cmd inDirectory: pkgdir)
-	description: 'Failed to make target ''', target, ''' in test package'.
+        assert: (OperatingSystem executeCommand: cmd inDirectory: pkgdir)
+        description: 'Failed to make target ''', target, ''' in test package'.
 
     "Created: / 14-08-2013 / 18:26:39 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 27-04-2016 / 09:32:26 / jv"
+    "Modified: / 05-11-2016 / 22:48:25 / jv"
 ! !
 
 !SnapshotRestartTests methodsFor:'running'!