CI script updates
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
make -C benchmarks/riscv_tests/isa run
|
make -C hw/simulate run
|
||||||
|
|||||||
@@ -142,17 +142,16 @@ int main(int argc, char **argv) {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
bool passed = true;
|
std::vector<std::string> tests(argv+2, argv+argc);
|
||||||
|
for (std::string test : tests) {
|
||||||
|
std::cout << test << std::endl;
|
||||||
|
|
||||||
std::string test(argv[2]);
|
RAM ram;
|
||||||
|
Simulator simulator;
|
||||||
std::cout << test << std::endl;
|
simulator.attach_ram(&ram);
|
||||||
|
simulator.load_ihex(test.c_str());
|
||||||
RAM ram;
|
simulator.run();
|
||||||
Simulator simulator;
|
}
|
||||||
simulator.attach_ram(&ram);
|
|
||||||
simulator.load_ihex(test.c_str());
|
|
||||||
simulator.run();
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user