Learn how to test your x86-64 Assembly exercises on Exercism
To run the tests, execute the following command:
make
Solving an exercise means making all its tests pass. By default, only one test
(the first one) is executed when you run the tests. This is intentional, as it
allows you to focus on just making that one test pass. Once it passes, you can
enable the next test by removing the TEST_IGNORE()
line. When all tests have
been enabled and your implementation makes them all pass, you'll have solved
the exercise!