Torsten a3effe29f6 adding integer compare tests and fixing returns
true, false and nll were not handled correctly as returns
returns assume int, and reduce. The solution (hack?) is to add fake numbers into true,false and nil that get returned from from the arm syscall
(and it works!, which means i can fix other tests now)
2020-03-28 18:41:59 +02:00
..
2020-02-26 19:01:01 +02:00
2019-08-24 17:00:59 +03:00
2019-09-25 01:14:00 +03:00
2018-05-20 14:45:48 +03:00
2019-10-04 00:38:47 +03:00
2020-03-22 17:47:31 +02:00
2020-03-25 12:43:57 +02:00
2020-03-22 14:31:43 +02:00
2019-09-29 22:37:28 +03:00
2019-10-03 20:55:41 +03:00
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 , SlotMachine

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