-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updating to NJOY2016.61. * Adding new test for NJOY21 version. * Updating lipservice version. * Improving the way that we ignore uninitilized errors in lipservice. * Trying to fix warning suppression. * Updating release notes * Removing commented code. * Removing g++ from GitHub Actions. * Update to Python 3.5 Co-authored-by: Wim Haeck <[email protected]>
- Loading branch information
Showing
213 changed files
with
1,817,135 additions
and
1,245,999 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,6 @@ | |
|
||
#include <variant> | ||
#include <map> | ||
|
||
|
||
#include <optional> | ||
#include <sstream> | ||
#include <unordered_set> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
add_executable( njoy21.Version.test Version.test.cpp ) | ||
target_compile_options( njoy21.Version.test PRIVATE ${${PREFIX}_common_flags} | ||
$<$<BOOL:${strict}>:${${PREFIX}_strict_flags}>$<$<CONFIG:DEBUG>: | ||
${${PREFIX}_DEBUG_flags} | ||
$<$<BOOL:${coverage}>:${${PREFIX}_coverage_flags}>> | ||
$<$<CONFIG:RELEASE>: | ||
${${PREFIX}_RELEASE_flags} | ||
$<$<BOOL:${link_time_optimization}>:${${PREFIX}_link_time_optimization_flags}> | ||
$<$<BOOL:${nonportable_optimization}>:${${PREFIX}_nonportable_optimization_flags}>> | ||
|
||
${CXX_appended_flags} ${njoy21_appended_flags} ) | ||
target_link_libraries( njoy21.Version.test PUBLIC njoy21_library catch-adapter ) | ||
add_test( NAME njoy21.Version COMMAND njoy21.Version.test ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#define CATCH_CONFIG_MAIN | ||
|
||
#include "catch.hpp" | ||
|
||
namespace njoy21 { | ||
#include "njoy21/Version.hpp" | ||
} // namespace | ||
|
||
// This was created in the hopes of avoiding to forget to change the Version | ||
// number in releases. | ||
// This is not a guarantee, but it should help. | ||
SCENARIO( "Testing NJOY21 version" ){ | ||
|
||
CHECK( "1.2.2" == njoy21::Version::version() ); | ||
|
||
} // SCENARIO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.