rubyx/test
Torsten Rüger 17f87f7464 Starting to fix resolve mechanism
resolve had the wrong approach, sort of class based oo
It took methods from "derived" types and just used them
To be correct, those methods would have to be recompiled for the current type, rubyx is type, not class based.
Started on that, still soe strange hang though

Later, type and method analysis may reveal "compatible" types (down only off course) where one could use the exact same code, but that is phase 2
2019-09-29 12:06:37 +03:00
..
arm fix all tests for previous commit 2019-02-08 23:03:23 +02:00
bench block version of loop 2019-08-24 17:00:59 +03:00
elf Fix bad test coverage 2019-09-25 01:14:00 +03:00
lib use modified opal logger 2018-05-20 14:45:48 +03:00
mains Removing preloads from mains tests 2019-09-24 22:05:38 +03:00
mom Remove separate block_compiler lists 2019-09-28 17:24:10 +03:00
parfait Starting to fix resolve mechanism 2019-09-29 12:06:37 +03:00
risc refactor risc_collection 2019-09-28 15:37:02 +03:00
ruby fix to_s (mostly) 2019-09-19 20:48:21 +03:00
rubyx Starting to fix resolve mechanism 2019-09-29 12:06:37 +03:00
support Remove separate block_compiler lists 2019-09-28 17:24:10 +03:00
util Also make risc compilers a linked lists 2019-09-28 15:08:08 +03:00
vool Starting to fix resolve mechanism 2019-09-29 12:06:37 +03:00
helper.rb A little work on test times 2019-09-18 13:36:29 +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