Skip to content

Commit

Permalink
Issue #1: added scripts for installing tODE on top of GLASS and then …
Browse files Browse the repository at this point in the history
…running tests ... (tODE installs GLASS1 first).

According to a recent TravisCI run (https://travis-ci.org/dalehenrich/tode) tODE tests are passing when installed directly on 3.2.17, 3.3.9, and 3.4.2.

The following is a tally of test failures by pre-upgrade version:

3215
------------------------
1773 run, 1767 passes, 4 expected defects, 0 failures, 2 errors, 0
unexpected passes
TDShellBrowseCommandTests debug: #testBrowseSymbolDict
TDShellFindCommandTests debug: #testFindSymbolDict
------------------------

339
------------------------
1773 run, 1765 passes, 4 expected defects, 0 failures, 4 errors, 0
unexpected passes
TDShellBrowseCommandTests debug: #testBrowseSender
TDShellBrowseCommandTests debug: #testBrowseSymbolDict
TDShellFindCommandTests debug: #testFindSender
TDShellFindCommandTests debug: #testFindSymbolDict
------------------------

343
------------------------
1773 run, 1767 passes, 4 expected defects, 0 failures, 2 errors, 0
unexpected passes
TDShellFindCommandTests debug: #testFindSymbolDict
TDShellBrowseCommandTests debug: #testBrowseSymbolDict
------------------------
  • Loading branch information
dalehenrich committed Feb 27, 2019
1 parent 5cd38d5 commit f272275
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 0 deletions.
19 changes: 19 additions & 0 deletions gsdevkit/bin/installTodeGsDevKitImage_3215
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
set -e
. defStone.env
export vers="3.5.0_g"

rm -f *.log *.out

newExtent -s snapshots/extent0_preparedGsDevKitImage_3215.dbf $GEMSTONE_NAME

export upgradeLogDir=`pwd`/upgradeLogDir

pushd "${upgradeLogDir}" >& /dev/null
rm -f *.log *.out
todeLoad $GEMSTONE_NAME
startTopaz $GEMSTONE_NAME -lq < $GS_HOME/shared/repos/GsDevKit_upgradeDevKitImage/bin/runImageTests
popd

stopStone $GEMSTONE_NAME
cp extents/extent0.dbf snapshots/extent0_tode_3215.dbf

19 changes: 19 additions & 0 deletions gsdevkit/bin/installTodeGsDevKitImage_339
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
set -e
. defStone.env
export vers="3.5.0_g"

rm -f *.log *.out

newExtent -s snapshotsx/extent0_preparedGsDevKitImage_339.dbf $GEMSTONE_NAME

export upgradeLogDir=`pwd`/upgradeLogDir

pushd "${upgradeLogDir}" >& /dev/null
rm -f *.log *.out
todeLoad $GEMSTONE_NAME
startTopaz $GEMSTONE_NAME -lq < $GS_HOME/shared/repos/GsDevKit_upgradeDevKitImage/bin/runImageTests
popd

stopStone $GEMSTONE_NAME
cp extents/extent0.dbf snapshots/extent0_tode_339.dbf

19 changes: 19 additions & 0 deletions gsdevkit/bin/installTodeGsDevKitImage_343
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
set -e
. defStone.env
export vers="3.5.0_g"

rm -f *.log *.out

newExtent -s snapshots/extent0_preparedGsDevKitImage_343.dbf $GEMSTONE_NAME

export upgradeLogDir=`pwd`/upgradeLogDir

pushd "${upgradeLogDir}" >& /dev/null
rm -f *.log *.out
todeLoad $GEMSTONE_NAME
startTopaz $GEMSTONE_NAME -lq < $GS_HOME/shared/repos/GsDevKit_upgradeDevKitImage/bin/runImageTests
popd

stopStone $GEMSTONE_NAME
cp extents/extent0.dbf snapshots/extent0_tode_343.dbf

0 comments on commit f272275

Please sign in to comment.