Skip to content

Commit c9ada0c

Browse files
committed
Started specification with spec of integer addition and subtraction
Signed-off-by: Stefan Marr <[email protected]>
1 parent 8b39e24 commit c9ada0c

File tree

5 files changed

+24364
-1
lines changed

5 files changed

+24364
-1
lines changed

.travis.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
name: ykSOM
5555
dist: bionic
5656
rust: [nightly]
57-
env: REPO=yksom.git BUILD="cargo build" SOM="cargo run -- " SOM_TESTS="--cp ../Smalltalk ../TestSuite/TestHarness.som"
57+
env: REPO=yksom.git BUILD="cargo build" SOM="cargo run -- " SOM_TESTS="--cp ../Smalltalk ../TestSuite/TestHarness.som" SOM_SPECS="--cp ../Smalltalk:../TestSuite:../specification/executable_specs ../specification/executable_specs/AllSpecs.som"
5858

5959

6060
# allow_failures:
@@ -105,4 +105,13 @@ script:
105105
106106
echo "$SOM $SOM_TESTS"
107107
eval "$SOM $SOM_TESTS"
108+
109+
echo Run Specs
110+
if [ "$SOM_SPECS" == "" ]
111+
then
112+
export SOM_SPECS="-cp ../Smalltalk:../TestSuite:../specification/executable_specs AllSpecs"
113+
fi
114+
115+
echo "$SOM $SOM_SPECS"
116+
eval "$SOM $SOM_SPECS"
108117
fi
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
AllSpecs = TestHarness (
2+
tests = (
3+
| l1 |
4+
l1 := Vector new.
5+
l1 append: IntSpec.
6+
^ l1
7+
)
8+
9+
)

0 commit comments

Comments
 (0)