For project 07, I wanted to have a test that would check for all operations (eq, gt, lt, and, or, add, sub...). So, I'm writing a MyTest.tst file that contains something like:
output-list RAM[0]%D2.6.2 RAM[256]%D2.6.2 RAM[257]%D2.6.2
RAM[258]%D2.6.2 RAM[259]%D2.6.2 RAM[260]%D2.6.2 RAM[261]%D2.6.2
RAM[262]%D2.6.2 RAM[263]%D2.6.2 RAM[264]%D2.6.2 // gt
RAM[265]%D2.6.2 RAM[266]%D2.6.2 RAM[267]%D2.6.2 RAM[268]%D2.6.2 // and
RAM[269]%D2.6.2 RAM[270]%D2.6.2 RAM[271]%D2.6.2 // add
RAM[272]%D2.6.2 RAM[273]%D2.6.2 RAM[274]%D2.6.2 RAM[275]%D2.6.2 // or
;
but I get an error message saying there are too many arguments. So, is there a better way to write such a test?
Thank you