Disable testing rpython version. Update copyright year.
Chris Pressey
10 years ago
6 | 6 |
|
7 | 7 |
-----------------------------------------------------------------------------
|
8 | 8 |
|
9 | |
Copyright (c)2014 Chris Pressey, Cat's Eye Technologies.
|
|
9 |
Copyright (c)2014-2015 Chris Pressey, Cat's Eye Technologies.
|
10 | 10 |
|
11 | 11 |
The authors intend this Report to belong to the entire Yolk
|
12 | 12 |
community, and so we grant permission to copy and distribute it for
|
|
23 | 23 |
|
24 | 24 |
-----------------------------------------------------------------------------
|
25 | 25 |
|
26 | |
Copyright (c)2014, Chris Pressey, Cat's Eye Technologies.
|
|
26 |
Copyright (c)2014-2015, Chris Pressey, Cat's Eye Technologies.
|
27 | 27 |
All rights reserved.
|
28 | 28 |
|
29 | 29 |
Redistribution and use in source and binary forms, with or without
|
245 | 245 |
|
246 | 246 |
-> Tests for functionality "Evaluate Yolk program"
|
247 | 247 |
|
248 | |
Now the final stroke -- fix the implementation of `self`. This is kind of
|
|
248 |
Now the final stroke — fix the implementation of `self`. This is kind of
|
249 | 249 |
tricky.
|
250 | 250 |
|
251 | 251 |
In the MCI, `self` is used for recursively interpreting parts of the "target
|
1 | 1 |
|
2 | 2 |
FIXTURES=''
|
3 | 3 |
if [ ! `which rpython`X = X ]; then
|
4 | |
FIXTURES="$FIXTURES fixtures/rpython-fixture.markdown"
|
5 | 4 |
if [ ! -e ./yolk-c ]; then
|
6 | 5 |
./build.sh || exit $?
|
7 | 6 |
fi
|
|
7 |
# Testing the RPython-built executable is disable until someone has
|
|
8 |
# the time and inclination to hunt down why it always hangs and fixes it.
|
|
9 |
#FIXTURES="$FIXTURES fixtures/rpython-fixture.markdown"
|
8 | 10 |
fi
|
9 | 11 |
|
10 | |
falderal $FIXTURES README.markdown $*
|
|
12 |
falderal --substring-error $FIXTURES README.markdown $*
|