Skip to content

Commit

Permalink
Merge pull request #6 from glassdb/issue_5
Browse files Browse the repository at this point in the history
patch a compile error and update to use smalltalkCI for travis ... expected set of failures to be addressed when work on PR #4 resumes ... shortly?
  • Loading branch information
dalehenrich authored Sep 23, 2020
2 parents 6b4c727 + 6af0751 commit 4aa53b0
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 33 deletions.
15 changes: 15 additions & 0 deletions .smalltalk.ston
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
SmalltalkCISpec {
#name : 'Metacello',
#loading : [
SCIMetacelloLoadSpec {
#baseline : 'SIXX',
#onWarningLog : true,
#directory : 'repository'
}
],
#testing : {
#include : {
#classes : [ #SentButNotImplementedTest, #UndefinedSymbolsTest ]
}
}
}
37 changes: 18 additions & 19 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
language: erlang
language: smalltalk
sudo: false

env:
os: linux

- ST=GemStone-2.4.4.1
# - ST=GemStone-2.4.4.7
# - ST=GemStone-2.4.5
- ST=GemStone-2.4.5.2
# - ST=GemStone-3.0.1
- ST=GemStone-3.1.0.6
- ST=GemStone-3.2.3
smalltalk:
- GemStone-2.4.8
- GemStone-3.1.0.6
- GemStone-3.2.17
- GemStone-3.3.9
- GemStone-3.4.5
- GemStone-3.5.3

install:
- export PROJECT_HOME="$(pwd)"
- cd $HOME
- wget -q -O builderCI.zip https://github.com/dalehenrich/builderCI/zipball/master
- unzip -q builderCI.zip
- cd dalehenrich-builderCI*
- source build_env_vars
- ln -s $PROJECT_HOME $GIT_PATH
- ./build_image.sh
smalltalk_config:
- .smalltalk.ston

script: $BUILDER_CI_HOME/testTravisCI.sh -verbose
cache:
directories:
- $SMALLTALK_CI_CACHE

notifications:
slack: gemtalksystems:4YWbzy6sJN9cE0FhxvUPP8nS
Original file line number Diff line number Diff line change
@@ -1,16 +1,9 @@
tests
testReadSixxForPoint
| sixxString |
sixxString := '<sixx.object sixx.id="0" sixx.type="Point" >1@3</sixx.object>
| sixxString |
sixxString := '<sixx.object sixx.id="0" sixx.type="Point" >1@3</sixx.object>
'.
self
should: [(Object readSixxFrom: sixxString)
= (1@3)].

sixxString := '<sixx.object sixx.id="0" sixx.type="Point" >[email protected]</sixx.object>
self should: [ (Object readSixxFrom: sixxString) = (1 @ 3) ].
sixxString := '<sixx.object sixx.id="0" sixx.type="Point" >[email protected]</sixx.object>
'.
self
should: [(Object readSixxFrom: sixxString)
= (123456789.0@-3.5)].


self should: [ (Object readSixxFrom: sixxString) = (123456789.0 @ -3.5) ]
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"testReadSixxForFraction" : "mu 5/4/2007 13:19",
"testReadSixxForInterval" : "minami 3/18/2003 01:36",
"testReadSixxForObjectWithId" : "mu 6/24/2007 17:34",
"testReadSixxForPoint" : "mu 6/25/2004 20:34",
"testReadSixxForPoint" : "dkh 09/22/2020 21:53",
"testReadSixxForRectangle" : "mu 12/12/2006 19:50",
"testReadSixxForRectangleOldFormat" : "mu 12/12/2006 19:51",
"testReadSixxForRecursiveArray" : "kuri-t 6/10/2002 14:37",
Expand Down
2 changes: 1 addition & 1 deletion repository/SIXX.310.package/monticello.meta/version

Large diffs are not rendered by default.

0 comments on commit 4aa53b0

Please sign in to comment.