mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Opm Parser: Include PATHS when importing WSEGLINK
* Opm Parser: Include PATHS when importing WSEGLINK Add PATHS to supported keywords to be able to use include files with alias in file path. * Move opm-parser-tests into OPM solution folder
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
-- WSEGLINK
|
||||
-- well-name segment-no-1 segment-no-2
|
||||
-- If item #2 and #3 are undefined, all segment links for the well are removed.
|
||||
-- If either item #2 or #3 is undefined, all segment links are removed for the well and segment given.
|
||||
--
|
||||
|
||||
|
||||
WSEGLINK
|
||||
PROD_N 20 30 /
|
||||
/
|
||||
|
||||
WSEGLINK
|
||||
PROD_M 20 /
|
||||
/
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
-- If either item #2 or #3 is undefined, all segment links are removed for the well and segment given.
|
||||
--
|
||||
|
||||
PATHS
|
||||
'E' 'mysubfolder' /
|
||||
/
|
||||
|
||||
|
||||
WSEGLINK
|
||||
PROD 22 30 /
|
||||
PROD2 25 37 /
|
||||
@@ -20,3 +25,6 @@ WSEGLINK
|
||||
WSEGLINK
|
||||
PROD_A /
|
||||
/
|
||||
|
||||
INCLUDE
|
||||
'$E/test_wseglink_subfolder.DATA ' /
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
#include "opm/input/eclipse/Parser/ParserKeywords/W.hpp"
|
||||
#include "opm/input/eclipse/Parser/ParserKeywords/I.hpp"
|
||||
#include "opm/input/eclipse/Parser/ParserKeywords/S.hpp"
|
||||
#include "opm/input/eclipse/Parser/ParserKeywords/P.hpp"
|
||||
|
||||
#include "OpmTestDataDirectory.h"
|
||||
|
||||
@@ -92,9 +93,11 @@ TEST(OpmParserTest, ReadAndParseWSEGLINK)
|
||||
|
||||
const Opm::ParserKeywords::WSEGLINK kw1;
|
||||
const Opm::ParserKeywords::INCLUDE kw2;
|
||||
const Opm::ParserKeywords::PATHS kw3;
|
||||
|
||||
parser.addParserKeyword(kw1);
|
||||
parser.addParserKeyword(kw2);
|
||||
parser.addParserKeyword(kw3);
|
||||
|
||||
std::string testFilePath = std::string(TEST_DATA_DIR) + "/test_wseglink.DATA";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user