-
Notifications
You must be signed in to change notification settings - Fork 6
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
Issue49 return vectors #271
Conversation
The fixes are problems found by the unit tests
All types except for LongDouble and None. This will now include the vector types. A biproduct of this change is that strings will be different in the files than before, they will not be verbatim in the file, but rather will be Variant("...").
This is based on the value in the results file. The fromString() method is used here to generate a Variant() from the file. The file is populated using the toString() method from Variant(), so it simply is required that they are inverses of each other.
--help: show help documentation --verbose: show verbose information --quiet: don't print anything --list-tests: only list test names
Not yet done though
Also add empty tests for fsutils.cpp
It worked before, but only because each test executable is made up of only one compilation unit, otherwise we may otherwise get a duplicate item error if more than one compilation unit would make up a test executable.
For std::runtime_error to be thrown
I tried to move to GCC 4.9 in Travis-CI, but with difficulty. So, I instead found workarounds for using GCC 4.8.4
Added mkdir(), rmdir(), chdir(), and curdir().
Looks like I still need to
|
@IanBriggs I have completed all changes I wanted to do.
Please review at your earliest convenience. This might be useful for our tutorial. |
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.
I've finished my review of my own work, Ian. Please take a look. I found some things I want to change anyway, but please see if there are things I missed or things that could have been done better.
Thank you!
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.
Thanks for adding abs to the empty test.
Looks good to me.
72cb1a8
to
6a05a5a
Compare
Fixes #49
Description:
You can now return
std::vector<float>
,std::vector<double>
, andstd::vector<long double>
from tests.flit::Variant
toString()
toflit::Variant
which is now how it is output to file inflit::TestBase
fromString()
toflit::Variant
which is now how it is read from file inflit::TestBase
Documentation:
Oops, I did not yet update the documentation.
Tests:
tests/flit_src/tst_TestBase.cpp
tests/flit_src/tst_Variant.cpp
tests/tinydir.h
to do directory listingstests/fsutil.h
withtests/harness/tst_fsutil.cpp
I probably need to add a few more tests
Variant(string)
with challenging stringsfsutils.h
are tested