-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Port stdlib_io tests to test-drive #87
Conversation
Minor updates to README.md
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The get_outpath()
routine will clash with the logic used in the testing framework to select the unit test to run. At the moment this doesn't matter, but is an issue we have to fix when we start merging the suites.
This was a fun exercise. All stdlib_io tests now run under the new testing framework.
loadtxt*
tests were re-written as the old tests were only printing to screen and not checking values. However, they do depend onsavetxt
for round-tripping the data, so neithertest_savetxt
andtest_loadtxt
are isolated from each other.