rubyx/test
Torsten Ruger c3b026a180 expand constant load
slightly hacky, but in good tradition
previous implementation only worked until 16 significant bits, which is getting to little
this one just keeps adding more instructions to arrive at the constant by force
There are surely cleverer ways of doing this, ie by using the barrel shifter
A start on #15, admittedly a hack
2018-08-31 23:28:31 +03:00
..
arm expand constant load 2018-08-31 23:28:31 +03:00
bench fix mod4 name 2018-04-19 10:00:55 +03:00
elf misc little test fixes 2018-07-03 10:12:40 +03:00
lib use modified opal logger 2018-05-20 14:45:48 +03:00
mains move the methods test to mains 2018-08-18 20:06:15 +03:00
mom add the addresses from labels as constants 2018-08-29 21:06:29 +03:00
parfait remove the last_object from chain 2018-08-29 21:05:54 +03:00
risc fix address nil values 2018-08-30 16:38:00 +03:00
ruby block assignment ruby to vool 2018-07-25 11:06:42 +03:00
rubyx generalize assemblers to use callables 2018-07-30 10:23:42 +03:00
support fix bug in slot_load and definition 2018-08-19 15:36:51 +03:00
util small maintanance 2018-06-16 21:01:15 +03:00
vool fix all tests accordingly to new return 2018-08-02 17:37:27 +03:00
helper.rb always use fail fast (in dev) 2018-08-06 13:07:06 +03:00
README.md update readme 2018-07-07 17:34:08 +03:00
test_all.rb always use fail fast (in dev) 2018-08-06 13:07:06 +03:00

Testing

Tdd, Bdd , Xdd, whatever you call it, i have come to the point where it is a way not only to write software, but to think about software. Ie:

  • if it's not tested, we don't know it works
  • test first makes me think about the software from the outside. (good perspective)

I used minitest as the framework, just because it is lighter and thus when the time comes to move to rubyx, less work.

All

'''' ruby test/test_all.rb ''''

Parfait, Risc , Arm , Mom

Follow the directory structure of the source and may be called unit tests

Risc/Interpreter

Contains many system tests that rely on everything else working. Should be hoisted i guess.

Main

Much like the Interpreter test, but for Arm. This is where the currently few executables are generated and there is an automatic way of running them remotely.

The plan is to integrate this with the interpreter directory