rubyx/test/mains
Torsten Rüger 0ae7c5d8aa hacking method not found
was using exit, since raise is not implemented. This was ambiguous as all programs exit.
Using :died as special kernel code and bending it, and reporting it in interpreter.
2019-09-09 11:47:37 +03:00
..
source fix interpreter to output symbols 2019-09-08 15:31:03 +03:00
helper.rb adds arm testing of same files 2018-06-24 17:10:39 +03:00
README.md Successfully interpret class methods 2019-02-27 09:48:21 +02:00
test_arm.rb update gems, remove ssh 2019-09-08 13:44:51 +03:00
test_interpreted.rb mains tests can include any code 2018-08-18 19:42:14 +03:00
test_new.rb hacking method not found 2019-09-09 11:47:37 +03:00

Mains testing

Test methods by their output and exit codes (return, since it is the main).

There are only two tests here (lus one, see below), one for interpreter, one for arm. Both run the same tests. The actual ruby code that is run is in the source dir. Test methods are generated, one for each source file.

Files

File names follow [name,stdout,exitcode] joined by _ pattern. Stdout may be left blank, but exit code must be supplied.

Arm

Obviously the arm tests need an arm platform. This may be defined by ARM_HOST, eg for simulated ARM_HOST=localhost

Also port and user may be specified with ARM_PORT and ARM_USER , they default to 2222 and pi if left blank. SSH keys must be set up so no passwords are required (and the users private key may not be password protected)

Developing

Since the Framework always runs all tests, it is a little cumbersome for developing a single new test. Since all get run and it is slow.

To develop the next test, one can edit test_new.rb . Once it runs on the interpreter, move the changes to a source file and revert test_new changes.