-
Notifications
You must be signed in to change notification settings - Fork 469
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
Regression Tests - input files are not copied #254
Comments
Did you compile on Windows with a Visual Studio solution generated by CMake or with the included solution in the If you used cmake, using the flag If you used the The action item here is to update the testing documentation. There have been a few updates to this documentation over the past year, but the methods for Mac and windows have become more consistent so that needs to be documented. |
I am using the included solution from the Thanks @rafmudaf for this solution. With this I was able to run all regression tests and most of them have passed. The only ones that have not passed are those using linearization. However, I have manually compared my locally created results with the baseline results: The only differences are in outputting very small numbers near to zero, like for example my local results show 0.000000000E+000 where the baseline shows -1.772120205E-032. As those are the only differences I am not worried about that to much, or should I? What do you think? P.S.: For those interested, as an example for my failed tests, I am attaching my results for the Ideal_Beam_Free_Free_Linear case along with the baseline results and a comparison report: |
Fixes #254 - Updates the testing documentation for Windows with instructions to copy r-test folder
fixed by #255 |
Hello,
After compiling OpenFAST with Visual Studio, I wanted to test my compiled executable by running the regression tests. Thus, I followed the instructions given in https://openfast.readthedocs.io/en/dev/source/testing/regression_test_windows.html, i.e. I tried to run the test manually by using the python script
manualRegressionTest.py
. However, all of the test cases failed!To solve the issue I had a deeper look and found that there is no
reg_tests
subdirectory in mybuild
directory and thus no input files for the test cases, which I assume is the reason for the failed tests.I have expected, that this directory and its content is created automatically, when running the script
manualRegressionTest.py
as it is also described in section 5.2.2. of the documentation at https://openfast.readthedocs.io/en/dev/source/testing/regression_test.html:I also had a look into
manualRegressionTest.py
, but couldn't find any command that is creating thebuild/reg_tests
directory and its content.Is that a bug in
manualRegressionTest.py
or is the documentation just missing some further steps, which I'm not aware of, right now, that has to be done before runningmanualRegressionTest.py
in order to create thebuild/reg_tests
directory beforehand?Best regards,
Paul
The text was updated successfully, but these errors were encountered: