Skip to content

Commit

Permalink
50710
Browse files Browse the repository at this point in the history
18057 Two tests for OSWindow now failing on Linux and Win
	https://pharo.fogbugz.com/f/cases/18057

http://files.pharo.org/image/50/50710.zip
  • Loading branch information
Jenkins Build Server authored and ci committed Apr 22, 2016
1 parent f259099 commit a4f2cdb
Show file tree
Hide file tree
Showing 10 changed files with 80 additions and 24 deletions.
@@ -0,0 +1,44 @@
baseline08: spec
<version: '0.8-baseline'>

spec for: #'common' do: [
spec blessing: #'baseline'.
spec repository: 'http://smalltalkhub.com/mc/Pharo/OSWindow/main/'.
spec
project: 'Athens' with: [
spec
className: #ConfigurationOfAthens;
versionString: #'stable';
repository: 'http://smalltalkhub.com/mc/Pharo/Athens/main/' ];
project: 'UFFIOpenGL' with: [
spec
className: #ConfigurationOfUFFIOpenGL;
versionString: #'stable';
repository: 'http://smalltalkhub.com/mc/ronsaldo/UFFIOpenGL/main/' ].
spec
package: 'OSWindow-Core';
package: 'OSWindow-SDL2' with: [
spec requires: #('OSWindow-Core' 'Athens' ). ];
package: 'OSWindow-VM' with: [
spec requires: #('OSWindow-Core' ). ];
package: 'NBXLib-Core';
package: 'OSWindow-X11' with: [
spec requires: #('OSWindow-Core' 'NBXLib-Core' ). ];
package: 'OSWindow-TUIO';
package: 'OSWindow-SDL2-Examples';
package: 'OSWindow-GLExample' with: [
spec requires: #('UFFIOpenGL' ). ];
package: 'OSWindow-Tests' with: [
spec requires: #('OSWindow-Core' ). ].
spec
group: 'WithOpenGL' with: #('Legacy' 'SDL2' 'OpenGL' );
group: 'default' with: #('Legacy' 'SDL2' 'Examples' );
group: 'OpenGLExamples' with: #('OSWindow-GLExample' );
group: 'X11' with: #('OSWindow-X11' );
group: 'Examples' with: #('SDL2-Examples' );
group: 'SDL2' with: #('OSWindow-SDL2' 'OSWindow-Core' 'OSWindow-Tests' );
group: 'WithOpenGLAndExamples' with: #('Legacy' 'SDL2' 'OpenGLExamples' );
group: 'SDL2-Examples' with: #('OSWindow-SDL2-Examples' 'SDL2' );
group: 'Legacy' with: #('OSWindow-VM' );
group: 'OpenGL' with: #();
group: 'TUIO' with: #('SDL2' 'OSWindow-TUIO' ). ].
@@ -1,4 +1,4 @@
development: spec
<symbolicVersion: #'development'>

spec for: #'common' version: '0.7-baseline'.
spec for: #'common' version: '0.8-baseline'.
@@ -1,4 +1,4 @@
stable: spec
<symbolicVersion: #'stable'>

spec for: #'common' version: '1.2.8'.
spec for: #'common' version: '1.2.9'.
@@ -0,0 +1,21 @@
version129: spec
<version: '1.2.9' imports: #('0.8-baseline' )>

spec for: #'common' do: [
spec blessing: #'stable'.
spec description: 'version 1.2.9'.
spec author: 'RonieSalgado'.
spec timestamp: '4/22/2016 14:25'.
spec
project: 'Athens' with: '3.9.3';
project: 'UFFIOpenGL' with: '1.0.1'.
spec
package: 'OSWindow-Core' with: 'OSWindow-Core-RonieSalgado.104';
package: 'OSWindow-SDL2' with: 'OSWindow-SDL2-RonieSalgado.95';
package: 'OSWindow-VM' with: 'OSWindow-VM-MerwanOuddane.4';
package: 'NBXLib-Core' with: 'NBXLib-Core';
package: 'OSWindow-X11' with: 'OSWindow-X11';
package: 'OSWindow-TUIO' with: 'OSWindow-TUIO';
package: 'OSWindow-SDL2-Examples' with: 'OSWindow-SDL2-Examples-RonieSalgado.12';
package: 'OSWindow-GLExample' with: 'OSWindow-GLExample';
package: 'OSWindow-Tests' with: 'OSWindow-Tests-RonieSalgado.3'. ].
Expand Up @@ -2,7 +2,7 @@ testNewWindowDefaults

| window |

window := OSWindow new.
window := OSWindow newWithNullDriver.

[
self assert: (window isValid).
Expand Down
Expand Up @@ -2,7 +2,7 @@ testSettingUpWindow

| window |

window := OSWindow new.
window := OSWindow newWithNullDriver.

[
window extent: 150@150.
Expand Down
@@ -1,4 +1,4 @@
script50709
script50710

^ 'AST-Core-TheIntegrator.411.mcz
AST-FFI-Pharo50Compatibility-EstebanLorenzano.1.mcz
Expand Down

This file was deleted.

@@ -0,0 +1,8 @@
update50710
"self new update50710"
self withUpdateLog: '18057 Two tests for OSWindow now failing on Linux and Win
https://pharo.fogbugz.com/f/cases/18057'.
self loadTogether: self script50710 merge: false.
self loadConfiguration: 'OSWindow' version: '1.2.9'.
SDL2Constants initialize. SDL_Event initialize.
self flushCaches.
@@ -1,5 +1,3 @@
commentForCurrentUpdate
^ '18052 Reformatting a method should never break the code
https://pharo.fogbugz.com/f/cases/18052
'
^ '18057 Two tests for OSWindow now failing on Linux and Win
https://pharo.fogbugz.com/f/cases/18057'

0 comments on commit a4f2cdb

Please sign in to comment.